2016-06-02 11:05:42 +05:30
|
|
|
module Gitlab
|
|
|
|
module GonHelper
|
|
|
|
def add_gon_variables
|
|
|
|
gon.api_version = API::API.version
|
|
|
|
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.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
|
2016-06-16 23:09:34 +05:30
|
|
|
gon.award_menu_url = emojis_path
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
if current_user
|
|
|
|
gon.current_user_id = current_user.id
|
|
|
|
gon.api_token = current_user.private_token
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|