Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Sumaran <alfredo@gitlab.com>2017-03-07 10:08:38 +0300
committerAlfredo Sumaran <alfredo@gitlab.com>2017-03-07 10:08:38 +0300
commit6b2d4947a6300f006fd46360161687fd19e18659 (patch)
tree3f75550dc9fb53d92aa73afe5a87fc2797c90058 /lib/gitlab/gon_helper.rb
parentdf55d35ffd33fe97e669a227dd4666044e8cc65b (diff)
parent4f143aa8f255be6b7c5695868dbd51bd3684b202 (diff)
Merge branch '23948-assign-to-me' into 'master'
re-add Assign to Me link on new MR/Issue forms Closes #23948 See merge request !9499
Diffstat (limited to 'lib/gitlab/gon_helper.rb')
-rw-r--r--lib/gitlab/gon_helper.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/gitlab/gon_helper.rb b/lib/gitlab/gon_helper.rb
index 1cfede5460f..6c275a8d5de 100644
--- a/lib/gitlab/gon_helper.rb
+++ b/lib/gitlab/gon_helper.rb
@@ -14,6 +14,7 @@ module Gitlab
if current_user
gon.current_user_id = current_user.id
gon.current_username = current_user.username
+ gon.current_user_fullname = current_user.name
end
end
end