diff options
author | Imre Farkas <ifarkas@gitlab.com> | 2019-01-23 14:26:15 +0100 |
---|---|---|
committer | Imre Farkas <ifarkas@gitlab.com> | 2019-01-23 14:26:15 +0100 |
commit | 157b385411bcbf0191108f7ce0e99cb3fe3baaef (patch) | |
tree | f61961ec0474a1f43bbdb681f186c76e790af3b7 | |
parent | c243b154abf5c29ba35fd2fab2ca3bc010fdc324 (diff) | |
download | gitlab-ce-157b385411bcbf0191108f7ce0e99cb3fe3baaef.tar.gz |
Log admin status of user when OAuth::User is saved
-rw-r--r-- | lib/gitlab/auth/o_auth/user.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/auth/o_auth/user.rb b/lib/gitlab/auth/o_auth/user.rb index a4e8a41b246..f38c5d57c44 100644 --- a/lib/gitlab/auth/o_auth/user.rb +++ b/lib/gitlab/auth/o_auth/user.rb @@ -46,7 +46,7 @@ module Gitlab gl_user.block if block_after_save - log.info "(#{provider}) saving user #{auth_hash.email} from login with extern_uid => #{auth_hash.uid}" + log.info "(#{provider}) saving user #{auth_hash.email} from login with admin => #{gl_user.admin}, extern_uid => #{auth_hash.uid}" gl_user rescue ActiveRecord::RecordInvalid => e log.info "(#{provider}) Error saving user #{auth_hash.uid} (#{auth_hash.email}): #{gl_user.errors.full_messages}" |