I'm getting the following error when trying to destroy a user's vote on a "contribution":

No route matches {:action=>"destroy", :controller=>"contribution_votes", 
                  :id=>#<ContributionVote contribution_id: 8245, user_id: 40>}


But have no idea why. Here is the button sending the request

<%= button_to "undo voteup!", 
        contribution.contribution_votes.find_by_user_id(current_user), 
        :method => :delete, :class => 'contribution_vote undo' %>


Here's the "destroy" action in the controller:

def destroy
    @vote = current_user.contribution_votes.find(params[:id])
    @vote.destroy


    @contribution = Contribution.find_by_id(@vote.contribution_id)


    @contribution_decrement = @contribution.decrement(:votes)

if @vote.destroy and @contribution_decrement.save
    respond_to do |format|
    format.html {redirect_to :back}
    format.js
 end 
 else 
        redirect_to :back         

 end
end


(some redundancy here I know, but it's to be filled in at a later date)

And here's the setup in routes.rb

resources :contribution_votes, :only => [:create, :destroy]

Can anyone help? I suspect the answer's obvious but I can't find it anywhere on SO.

link|improve this question

Can you show us the generated html of the button? – Nerian Jun 14 '11 at 16:09
@John - I'm very new to rails so don't really know how to go about remedying that (I'm also not sure why what I'm using is a nested resource, but will go look it up). Is there any way I can set the controller explicitly? And why would it not be looking for the correct controller? Thanks for your help. – jonic Jun 14 '11 at 16:47
Have you restarted the server after you have changed the routes? – Arsen7 Jun 14 '11 at 19:31
feedback

1 Answer

Change your code in view to (I think it will help):

<%= button_to "undo voteup!", 
    contribution_votes_path(current_user.id),
    :method => :delete, :class => 'contribution_vote undo' %>

.. by the way: type rake routes in your console and verify that you use right route path (I can mistake).

link|improve this answer
That doesn't seem to work - probably because the controller tries to find the contribution_vote with id=user.id. The form needs to pass both current_user.id and contribution.id to identify the right contribution_vote to be deleted... – jonic Jun 14 '11 at 16:26
Routes also seem to be fine: contribution_vote DELETE /contribution_votes(.:format) {:controller=>"contribution_votes", :action=>"destroy"} – jonic Jun 14 '11 at 16:29
But thanks anyway bor1s! – jonic Jun 14 '11 at 16:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.