From 31e725aa16848269ca8c504ef15f876bc7a41f1a Mon Sep 17 00:00:00 2001 From: Aaron Gundel Date: Mon, 2 Dec 2024 13:15:14 -0700 Subject: [PATCH] stop route stomping until scheme pages integrate --- arches_lingo/src/arches_lingo/routes.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/arches_lingo/src/arches_lingo/routes.ts b/arches_lingo/src/arches_lingo/routes.ts index cf7ce7e0..3adabd95 100644 --- a/arches_lingo/src/arches_lingo/routes.ts +++ b/arches_lingo/src/arches_lingo/routes.ts @@ -52,6 +52,16 @@ export const routes = [ { path: "/scheme/:id", name: "scheme", + component: () => import("@/arches_lingo/pages/SchemePage.vue"), + meta: { + shouldShowNavigation: true, + shouldShowHierarchy: true, + requiresAuthentication: true, + }, + }, + { + path: "/scheme/:id/report", + name: "scheme", component: () => import("@/arches_lingo/pages/SchemeReport.vue"), meta: { shouldShowNavigation: true,