2016-06-03 14:09:45 -04:00
|
|
|
- @no_container = true
|
2016-04-12 10:16:39 -04:00
|
|
|
- page_title "Pipelines"
|
2016-05-28 13:26:08 -04:00
|
|
|
= render "projects/pipelines/head"
|
2016-04-12 10:16:39 -04:00
|
|
|
|
2017-03-14 05:30:57 -04:00
|
|
|
#pipelines-list-vue{ data: { endpoint: namespace_project_pipelines_path(@project.namespace, @project, format: :json),
|
|
|
|
"css-class" => container_class,
|
|
|
|
"help-page-path" => help_page_path('ci/quick_start/README'),
|
|
|
|
"new-pipeline-path" => new_namespace_project_pipeline_path(@project.namespace, @project),
|
|
|
|
"can-create-pipeline" => can?(current_user, :create_pipeline, @project).to_s,
|
|
|
|
"all-path" => project_pipelines_path(@project),
|
|
|
|
"pending-path" => project_pipelines_path(@project, scope: :pending),
|
|
|
|
"running-path" => project_pipelines_path(@project, scope: :running),
|
|
|
|
"finished-path" => project_pipelines_path(@project, scope: :finished),
|
|
|
|
"branches-path" => project_pipelines_path(@project, scope: :branches),
|
|
|
|
"tags-path" => project_pipelines_path(@project, scope: :tags),
|
|
|
|
"has-ci" => @repository.gitlab_ci_yml,
|
|
|
|
"ci-lint-path" => ci_lint_path } }
|
2017-03-20 11:36:02 -04:00
|
|
|
|
|
|
|
= page_specific_javascript_bundle_tag('common_vue')
|
2017-04-19 07:44:37 -04:00
|
|
|
= page_specific_javascript_bundle_tag('pipelines')
|