Answer the question
In order to leave comments, you need to log in
How can you make the "like" action only run once per user in Rails?
Started learning Rails. Now I'm making a news site and there was one question about voting for an article. How can I make the "like" action only run once per user.
def like
@article = Article.find(params[:id])
@article.increment!(:votes_count)
redirect_to action: :show
end
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question