diff options
author | Alfredo Sumaran <alfredo@gitlab.com> | 2017-03-07 07:08:38 +0000 |
---|---|---|
committer | Alfredo Sumaran <alfredo@gitlab.com> | 2017-03-07 07:08:38 +0000 |
commit | 6b2d4947a6300f006fd46360161687fd19e18659 (patch) | |
tree | 3f75550dc9fb53d92aa73afe5a87fc2797c90058 /lib | |
parent | df55d35ffd33fe97e669a227dd4666044e8cc65b (diff) | |
parent | 4f143aa8f255be6b7c5695868dbd51bd3684b202 (diff) | |
download | gitlab-ce-6b2d4947a6300f006fd46360161687fd19e18659.tar.gz |
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')
-rw-r--r-- | lib/gitlab/gon_helper.rb | 1 |
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 |