Reputation:
<%= link_to "Follow", { :controller => "friendship", :action => "follow",:id=> friend.id} , :remote => true, :class => "follow_user" %>
Upvotes: 0
Views: 577
Reputation: 12564
method: :post
to your link_to
options.request.post?
in your controller.Upvotes: 0
Reputation: 1096
Try
<%= button_to "Follow", { controller: "friendship", action: "follow", id: friend.id}, remote: true, class: "follow_user", method: :post %>
Upvotes: 1