diff options
| author | Nick Thomas <nick@gitlab.com> | 2017-06-02 14:42:06 +0100 |
|---|---|---|
| committer | Nick Thomas <nick@gitlab.com> | 2017-06-05 17:48:57 +0100 |
| commit | 11fb83fcc0efa91f60e516d7fb23d035b8f78634 (patch) | |
| tree | 569c53d76bcd7a88ff854bdacc7ba8f2dc588c9b /app/views/admin | |
| parent | 8ce26b3ab64caefce2f7bfba1448428657c0fecc (diff) | |
| download | gitlab-ce-11fb83fcc0efa91f60e516d7fb23d035b8f78634.tar.gz | |
Allow users to be hard-deleted from the admin user show page
Diffstat (limited to 'app/views/admin')
| -rw-r--r-- | app/views/admin/users/show.html.haml | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/app/views/admin/users/show.html.haml b/app/views/admin/users/show.html.haml index 89d0bbb7126..b556ff056c0 100644 --- a/app/views/admin/users/show.html.haml +++ b/app/views/admin/users/show.html.haml @@ -177,7 +177,7 @@ %p Deleting a user has the following effects: = render 'users/deletion_guidance', user: @user %br - = 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 + - if can?(current_user, :destroy_user, @user) + %p + This option deletes the user and any contributions that + would usually be moved to the + = succeed "." do + = link_to "system ghost user", help_page_path("user/profile/account/delete_account") + 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" + - else + %p + You don't have access to delete this user. |
