summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2018-05-28 09:52:08 +0000
committerDouwe Maan <douwe@gitlab.com>2018-05-28 09:52:08 +0000
commit4bc16881347b53709c0f28a3ac2ed3a96d7051b9 (patch)
tree80f88831eb64c8b4c4439d8759afb53c30df3929 /lib
parentaa1a39a927b2810c07d23920d5035c6143d8c9cc (diff)
parent4ba4275632351518a4b65e432914a60747ce3e52 (diff)
downloadgitlab-shell-4bc16881347b53709c0f28a3ac2ed3a96d7051b9.tar.gz
Merge branch 'bvl-display-username-instead-of-fullname' into 'master'v7.1.3
Display the username instead of fullname Closes #131 See merge request gitlab-org/gitlab-shell!204
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab_shell.rb10
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/gitlab_shell.rb b/lib/gitlab_shell.rb
index b38fefe..9644cf4 100644
--- a/lib/gitlab_shell.rb
+++ b/lib/gitlab_shell.rb
@@ -18,7 +18,7 @@ class GitlabShell # rubocop:disable Metrics/ClassLength
API_COMMANDS = %w(2fa_recovery_codes).freeze
GL_PROTOCOL = 'ssh'.freeze
- attr_accessor :key_id, :gl_repository, :repo_name, :command, :git_access, :username
+ attr_accessor :key_id, :gl_repository, :repo_name, :command, :git_access
attr_reader :repo_path
def initialize(key_id)
@@ -196,8 +196,14 @@ class GitlabShell # rubocop:disable Metrics/ClassLength
end
end
+ def username_from_discover
+ return nil unless user && user['username']
+
+ "@#{user['username']}"
+ end
+
def username
- user && user['name'] || 'Anonymous'
+ @username ||= username_from_discover || 'Anonymous'
end
# User identifier to be used in log messages.