diff options
author | Stan Hu <stanhu@gmail.com> | 2016-01-12 00:57:05 -0800 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2016-01-12 00:59:29 -0800 |
commit | 75123458eecbc34d01844538b9ffc04c71f550d6 (patch) | |
tree | b47c6122a2cff4f5ec035c0625f9ff8f60b810a1 /app/views | |
parent | c4511a123401dcf9c2e1b3de732d18463fe9ba90 (diff) | |
download | gitlab-ce-75123458eecbc34d01844538b9ffc04c71f550d6.tar.gz |
Add user's last used IP addresses to admin page
This would help admins figure out from where spam is originating.
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/admin/users/show.html.haml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/views/admin/users/show.html.haml b/app/views/admin/users/show.html.haml index 2c2450d4117..2bdbae19588 100644 --- a/app/views/admin/users/show.html.haml +++ b/app/views/admin/users/show.html.haml @@ -71,6 +71,14 @@ No %li + %span.light Current sign-in IP: + %strong + - if @user.current_sign_in_ip + = @user.current_sign_in_ip + - else + never + + %li %span.light Current sign-in at: %strong - if @user.current_sign_in_at @@ -79,6 +87,14 @@ never %li + %span.light Last sign-in IP: + %strong + - if @user.last_sign_in_ip + = @user.last_sign_in_ip + - else + never + + %li %span.light Last sign-in at: %strong - if @user.last_sign_in_at |