summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSimon Knox <psimyn@gmail.com>2017-02-22 18:26:32 +1100
committerSimon Knox <psimyn@gmail.com>2017-03-07 16:23:52 +1100
commit4f143aa8f255be6b7c5695868dbd51bd3684b202 (patch)
tree089eb4ef4eaa97e70b6eeee15dcf0c4a3c69c700 /lib
parent9f908cfc8ed3acf2fd6692f098ed1bd526631a0d (diff)
downloadgitlab-ce-4f143aa8f255be6b7c5695868dbd51bd3684b202.tar.gz
re-add Assign to Me link on new MR/Issue forms
Diffstat (limited to 'lib')
-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 9c384069661..744fa1f9981 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