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

routes.js « crm « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12aa17d73b67a8bc5e245f1d29815ce08c6e8a2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { INDEX_ROUTE_NAME, NEW_ROUTE_NAME, EDIT_ROUTE_NAME } from './constants';

export default [
  {
    name: INDEX_ROUTE_NAME,
    path: '/',
  },
  {
    name: NEW_ROUTE_NAME,
    path: '/new',
  },
  {
    name: EDIT_ROUTE_NAME,
    path: '/:id/edit',
  },
];