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:
authorSimon Knox <psimyn@gmail.com>2017-02-22 10:26:32 +0300
committerSimon Knox <psimyn@gmail.com>2017-03-07 08:23:52 +0300
commit4f143aa8f255be6b7c5695868dbd51bd3684b202 (patch)
tree089eb4ef4eaa97e70b6eeee15dcf0c4a3c69c700 /lib/gitlab/gon_helper.rb
parent9f908cfc8ed3acf2fd6692f098ed1bd526631a0d (diff)
re-add Assign to Me link on new MR/Issue forms
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 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