debian-mirror-gitlab/app/assets/javascripts/achievements/routes.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
266 B
JavaScript
Raw Normal View History

2023-07-09 08:55:56 +05:30
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',
},
];