debian-mirror-gitlab/lib/gitlab/gon_helper.rb

28 lines
1.4 KiB
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
# rubocop:disable Metrics/AbcSize
2016-06-02 11:05:42 +05:30
module Gitlab
module GonHelper
def add_gon_variables
2017-08-17 22:00:37 +05:30
gon.api_version = 'v4'
gon.default_avatar_url = URI.join(Gitlab.config.gitlab.url, ActionController::Base.helpers.image_path('no_avatar.png')).to_s
2016-06-02 11:05:42 +05:30
gon.max_file_size = current_application_settings.max_attachment_size
2017-08-17 22:00:37 +05:30
gon.asset_host = ActionController::Base.asset_host
2016-06-02 11:05:42 +05:30
gon.relative_url_root = Gitlab.config.gitlab.relative_url_root
2016-08-24 12:49:21 +05:30
gon.shortcuts_path = help_page_path('shortcuts')
2016-06-02 11:05:42 +05:30
gon.user_color_scheme = Gitlab::ColorSchemes.for_user(current_user).css_class
2017-08-17 22:00:37 +05:30
gon.katex_css_url = ActionController::Base.helpers.asset_path('katex.css')
gon.katex_js_url = ActionController::Base.helpers.asset_path('katex.js')
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
gon.gitlab_logo = ActionController::Base.helpers.asset_path('gitlab_logo.png')
2016-06-02 11:05:42 +05:30
if current_user
gon.current_user_id = current_user.id
2017-08-17 22:00:37 +05:30
gon.current_username = current_user.username
gon.current_user_fullname = current_user.name
2016-06-02 11:05:42 +05:30
end
end
end
end