Clean Up Links On The Topics List
Goals
Steps
Step 1: Remove the 'show' and 'edit' links
<td><%= link_to 'Show', topic %></td> <td><%= link_to 'Edit', edit_topic_path(topic) %></td>Step 2: Change 'destroy' to 'delete'
<td><%= link_to 'Delete', topic, data: { turbo_method: :delete, turbo_confirm: 'Are you sure?' } %></td>Step 3: Confirm your changes
Explanation
Next Step:
Go on to Credits And Next Steps