5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# File 'app/helpers/ci/jobs_helper.rb', line 5
def jobs_data(project, build)
{
"job_endpoint" => project_job_path(project, build, format: :json),
"log_endpoint" => trace_project_job_path(project, build, format: :json),
"test_report_summary_url" => test_report_summary(project, build),
"page_path" => project_job_path(project, build),
"project_path" => project.full_path,
"artifact_help_url" => help_page_path('user/gitlab_com/_index.md', anchor: 'cicd'),
"deployment_help_url" => help_page_path('user/project/clusters/deploy_to_cluster.md',
anchor: 'troubleshooting'),
"runner_settings_url" => project_runners_path(build.project, anchor: 'js-runners-settings'),
"retry_outdated_job_docs_url" => help_page_path('ci/pipelines/settings.md',
anchor: 'prevent-outdated-deployment-jobs'),
"pipeline_test_report_url" => test_report_project_pipeline_path(project, build.pipeline),
"log_viewer_path" => viewer_project_job_path(project, build),
"can_set_pipeline_variables" => Ability.allowed?(current_user, :set_pipeline_variables, project).to_s
}
end
|