Welcome to mirror list, hosted at ThFree Co, Russian Federation.

routes.js « pipeline_details « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84207f3ab0cbae74b49e5dadbd533f326afcac91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import PipelineGraphWrapper from './graph/graph_component_wrapper.vue';
import Dag from './dag/dag.vue';
import FailedJobsApp from './jobs/failed_jobs_app.vue';
import JobsApp from './jobs/jobs_app.vue';
import TestReports from './test_reports/test_reports.vue';
import {
  pipelineTabName,
  needsTabName,
  jobsTabName,
  failedJobsTabName,
  testReportTabName,
} from './constants';

export const routes = [
  { name: pipelineTabName, path: '/', component: PipelineGraphWrapper },
  { name: needsTabName, path: '/dag', component: Dag },
  { name: jobsTabName, path: '/builds', component: JobsApp },
  { name: failedJobsTabName, path: '/failures', component: FailedJobsApp },
  { name: testReportTabName, path: '/test_report', component: TestReports },
];