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

routes.js « router « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e0cc1715a7ea0f3de76f4bed6cbdd2d98776a08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import DashboardPage from '../pages/dashboard_page.vue';

import { BASE_DASHBOARD_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: BASE_DASHBOARD_PAGE,
    path: '*',
    component: DashboardPage,
  },
];