]> git.openstreetmap.org Git - rails.git/commitdiff
Show user delete links to admins
authorTom Hughes <tom@compton.nu>
Thu, 11 Jun 2020 16:26:05 +0000 (17:26 +0100)
committerTom Hughes <tom@compton.nu>
Thu, 11 Jun 2020 16:26:05 +0000 (17:26 +0100)
app/views/users/show.html.erb

index 3b330d2944bc87378d5eaac6fc45d64eb79a9df7..18b69bdcab7290c1dc801669baa3a7d35d666cb5 100644 (file)
 
       <% end %>
 
-      <% if can?(:set_status, User) || can?(:delete, User) %>
+      <% if can?(:set_status, User) || can?(:destroy, User) %>
 
         <ul class='secondary-actions clearfix'>
           <% if can? :set_status, User %>
               </li>
             <% end %>
           <% end %>
-          <% if can? :delete, User %>
+          <% if can? :destroy, User %>
             <li>
               <%= link_to t(".delete_user"), user_path(:display_name => @user.display_name), :method => :delete, :data => { :confirm => t(".confirm") } %>
             </li>