debian-mirror-gitlab/app/helpers/projects/error_tracking_helper.rb

31 lines
1.2 KiB
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
module Projects::ErrorTrackingHelper
2019-12-04 20:38:33 +05:30
def error_tracking_data(current_user, project)
2019-02-15 15:39:39 +05:30
error_tracking_enabled = !!project.error_tracking_setting&.enabled?
{
'index-path' => project_error_tracking_index_path(project,
format: :json),
2019-12-04 20:38:33 +05:30
'user-can-enable-error-tracking' => can?(current_user, :admin_operations, project).to_s,
2019-02-15 15:39:39 +05:30
'enable-error-tracking-link' => project_settings_operations_path(project),
'error-tracking-enabled' => error_tracking_enabled.to_s,
2020-03-13 15:44:24 +05:30
'project-path' => project.full_path,
'list-path' => project_error_tracking_index_path(project),
2019-02-15 15:39:39 +05:30
'illustration-path' => image_path('illustrations/cluster_popover.svg')
}
end
2019-12-26 22:10:19 +05:30
def error_details_data(project, issue_id)
opts = [project, issue_id, { format: :json }]
{
2020-03-13 15:44:24 +05:30
'issue-id' => issue_id,
'project-path' => project.full_path,
'issue-update-path' => update_project_error_tracking_index_path(*opts),
2020-01-01 13:55:28 +05:30
'project-issues-path' => project_issues_path(project),
2019-12-26 22:10:19 +05:30
'issue-stack-trace-path' => stack_trace_project_error_tracking_index_path(*opts)
}
end
2019-02-15 15:39:39 +05:30
end