summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/monitoring/router/routes.js
blob: cc43fd8622a0a7e2d4e855c98d20cd6a837df4be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import DashboardPage from '../pages/dashboard_page.vue';
import PanelNewPage from '../pages/panel_new_page.vue';

import { DASHBOARD_PAGE, PANEL_NEW_PAGE } from './constants';

/**
 * Because the cluster health page uses the dashboard
 * app instead the of the dashboard component, hitting
 * `/` route is not possible. Hence using `*` until the
 * health page is refactored.
 * https://gitlab.com/gitlab-org/gitlab/-/issues/221096
 */
export default [
  {
    name: PANEL_NEW_PAGE,
    path: '/:dashboard(.+)?/panel/new',
    component: PanelNewPage,
  },
  {
    name: DASHBOARD_PAGE,
    path: '/:dashboard(.+)?',
    component: DashboardPage,
  },
];