I have a Friendships model. I need to create a link that posts an update using a link_to. I also need the link_to to add a param with the decision.
How can I build this link_to?
I've tried this:
<%= link_to "Accept Request", friendships_path(:id => @user.id, :decision => "accept"), :method => :put %>
This fails as it posts to:
Started POST "/friendships?decision=accept&id=5379" for 127.0.0.1 at 2011-12-18 17:07:24 -0800
Parameters: {"authenticity_token"=>"Cj/5vmwQWZ4vXStiD1/exxwQJedC9x70gLTrvgUxfpc=", "decision"=>"accept", "id"=>"5379", "uuid"=>"friendships"}
Where it should have posted to /friendships/33?decision=accept with a PUT parameter to trigger the Controller's update method, right?
Thanks
Friendshipsis a questionnable decision in the first place. Following rails convention it should beFriendship(singular). I guess that's why the path helper is wrong, it's acting as if it was a resource collection route (as an index action) instead of a member one. – m_x Dec 19 '11 at 2:29