gitlab-org--gitlab-foss/lib/gitlab/gon_helper.rb
Alfredo Sumaran 6b2d4947a6 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
2017-03-07 07:08:38 +00:00

21 lines
1 KiB
Ruby

module Gitlab
module GonHelper
def add_gon_variables
gon.api_version = 'v3' # v4 Is not officially released yet, therefore can't be considered as "frozen"
gon.default_avatar_url = URI.join(Gitlab.config.gitlab.url, ActionController::Base.helpers.image_path('no_avatar.png')).to_s
gon.max_file_size = current_application_settings.max_attachment_size
gon.asset_host = ActionController::Base.asset_host
gon.relative_url_root = Gitlab.config.gitlab.relative_url_root
gon.shortcuts_path = help_page_path('shortcuts')
gon.user_color_scheme = Gitlab::ColorSchemes.for_user(current_user).css_class
gon.katex_css_url = ActionController::Base.helpers.asset_path('katex.css')
gon.katex_js_url = ActionController::Base.helpers.asset_path('katex.js')
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
end