=link_to'Remove user',[:admin,@user],data: {confirm: "USER #{@user.name} WILL BE REMOVED! Are you sure?"},method: :delete,class: "btn btn-remove"
=link_to'Remove user',admin_user_path(@user),data: {confirm: "USER #{@user.name} WILL BE REMOVED! Are you sure?"},method: :delete,class: "btn btn-remove"
-else
-if@user.solo_owned_groups.present?
%p
...
...
@@ -188,3 +188,22 @@
-else
%p
You don't have access to delete this user.
.panel.panel-danger
.panel-heading
Remove user and contributions
.panel-body
-ifcan?(current_user,:destroy_user,@user)
%p
This option deletes the user and any contributions that
As well as the user's personal projects, groups owned solely by
the user, and projects in them, will also be removed. Commits
to other projects are unaffected.
%br
=link_to'Remove user and contributions',admin_user_path(@user,hard_delete: true),data: {confirm: "USER #{@user.name} WILL BE REMOVED! Are you sure?"},method: :delete,class: "btn btn-remove"