gitlab-org--gitlab-foss/lib/gitlab/gon_helper.rb

29 lines
1.4 KiB
Ruby
Raw Normal View History

2017-05-26 20:37:29 +00:00
# rubocop:disable Metrics/AbcSize
module Gitlab
module GonHelper
def add_gon_variables
gon.api_version = 'v4'
2017-02-22 00:51:36 +00:00
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')
2017-04-28 15:01:22 +00:00
gon.sentry_dsn = current_application_settings.clientside_sentry_dsn if current_application_settings.clientside_sentry_enabled
gon.gitlab_url = Gitlab.config.gitlab.url
gon.revision = Gitlab::REVISION
2017-05-26 14:26:06 +00:00
gon.gitlab_logo = ActionController::Base.helpers.asset_path('gitlab_logo.png')
if current_user
gon.current_user_id = current_user.id
2016-11-11 17:56:47 +00:00
gon.current_username = current_user.username
gon.current_user_fullname = current_user.name
2017-05-18 08:40:35 +00:00
gon.current_user_avatar_url = current_user.avatar_url
end
end
end
end