diff options
author | James Newton <hello@jamesnewton.com> | 2015-10-28 16:39:23 +0100 |
---|---|---|
committer | James Newton <hello@jamesnewton.com> | 2015-10-29 11:00:17 +0100 |
commit | 3bb626f91cb50bd2eff58681e22db942b7d6a087 (patch) | |
tree | 643e740b70f97bd647c89ca46234c1d5e65f4f4e /app/views/admin | |
parent | 98cc695afb2fc97a1ca897ad28741612bcde88a3 (diff) | |
download | gitlab-ce-3bb626f91cb50bd2eff58681e22db942b7d6a087.tar.gz |
refactor login as to be impersonation with better login/logout
Modifies the existing "login as" feature to be called impersonation, as
well as keeping track of who is impersonating to revert back to that
user without having to log out.
Diffstat (limited to 'app/views/admin')
-rw-r--r-- | app/views/admin/users/_head.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/users/_head.html.haml b/app/views/admin/users/_head.html.haml index 4245d0f1eda..8d1cab4137c 100644 --- a/app/views/admin/users/_head.html.haml +++ b/app/views/admin/users/_head.html.haml @@ -7,7 +7,7 @@ .pull-right - unless @user == current_user - = link_to 'Log in as this user', login_as_admin_user_path(@user), method: :post, class: "btn btn-grouped btn-info" + = link_to 'Impersonate', impersonate_admin_user_path(@user), method: :post, class: "btn btn-grouped btn-info" = link_to edit_admin_user_path(@user), class: "btn btn-grouped" do %i.fa.fa-pencil-square-o Edit |