Rails 7

Rails 7

with Turbo, out of the box. Link_to delete

Before Rails 7

<%= link_to 'Delete', manage_user_path(user), method: :delete, data: {confirm: "Are you sure?"} %>

Rails 7 (with Turbo, out of the box)

<%= link_to 'Delete', manage_user_path(user), data: {turbo_method: :delete, turbo_confirm: 'Are you sure?'} %>

Meld dich an und schreibe ein Kommentar