added routes for fullview in the lane of dashboard

This commit is contained in:
Peter Olu 2022-04-23 14:30:29 +01:00
parent bdc13355df
commit 1e1a26b8be

View File

@ -66,6 +66,19 @@ export const routesDashboard: Array<RouteRecordRaw> = [
notShow: true,
},
},
{
path: "/fullview/:layerId/:entity/:name",
component: () =>
import(
/* webpackChunkName: "dashboards" */ "@/views/dashboard/Edit.vue"
),
name: "FullViewCreate",
meta: {
title: "dashboardEdit",
exact: false,
notShow: true,
},
},
{
path: "/dashboard/:layerId/:entity/:serviceId/:name",
component: () =>
@ -79,6 +92,19 @@ export const routesDashboard: Array<RouteRecordRaw> = [
notShow: true,
},
},
{
path: "/fullview/:layerId/:entity/:serviceId/:name",
component: () =>
import(
/* webpackChunkName: "dashboards" */ "@/views/dashboard/Edit.vue"
),
name: "FullViewView",
meta: {
title: "dashboardEdit",
exact: false,
notShow: true,
},
},
{
path: "/dashboard/related/:layerId/:entity/:serviceId/:destServiceId/:name",
component: () =>
@ -92,6 +118,19 @@ export const routesDashboard: Array<RouteRecordRaw> = [
notShow: true,
},
},
{
path: "/fullview/related/:layerId/:entity/:serviceId/:destServiceId/:name",
component: () =>
import(
/* webpackChunkName: "FullViewdashboards" */ "@/views/dashboard/Edit.vue"
),
name: "FullViewViewServiceRelation",
meta: {
title: "dashboardEdit",
exact: false,
notShow: true,
},
},
{
path: "/dashboard/:layerId/:entity/:serviceId/:podId/:name",
component: () =>
@ -105,6 +144,19 @@ export const routesDashboard: Array<RouteRecordRaw> = [
notShow: true,
},
},
{
path: "/fullview/:layerId/:entity/:serviceId/:podId/:name",
component: () =>
import(
/* webpackChunkName: "FullViewdashboards" */ "@/views/dashboard/Edit.vue"
),
name: "FullViewViewPod",
meta: {
title: "dashboardEdit",
exact: false,
notShow: true,
},
},
{
path: "/dashboard/:layerId/:entity/:serviceId/:podId/:destServiceId/:destPodId/:name",
component: () =>
@ -118,6 +170,19 @@ export const routesDashboard: Array<RouteRecordRaw> = [
notShow: true,
},
},
{
path: "/fullview/:layerId/:entity/:serviceId/:podId/:destServiceId/:destPodId/:name",
component: () =>
import(
/* webpackChunkName: "FullViewdashboards" */ "@/views/dashboard/Edit.vue"
),
name: "FullViewViewPodRelation",
meta: {
title: "dashboardEdit",
exact: true,
notShow: true,
},
},
],
},
];