Search⌘ K

Basic Challenge: Dislike Links

Explore how to add a dislike button to your Rails app's index view by creating a dislike action, configuring routes, and updating the view. Understand how to use Acts as Votable methods to manage dislikes alongside existing likes, enhancing user interaction features.

We'll cover the following...

Problem statement

You currently only have a ‘like’ button displaying in our index view. Your task is to add a similar button for ‘dislike’. ...