From 10d9488374c1f96e36bfe28edbfe2ab3082c5b6a Mon Sep 17 00:00:00 2001 From: Brandon Clayton <bclayton@usgs.gov> Date: Tue, 26 Nov 2024 16:18:47 -0700 Subject: [PATCH] add internal route --- projects/nshmp-apps/src/app/app.routes.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/projects/nshmp-apps/src/app/app.routes.ts b/projects/nshmp-apps/src/app/app.routes.ts index 47e8da2dd..005133679 100644 --- a/projects/nshmp-apps/src/app/app.routes.ts +++ b/projects/nshmp-apps/src/app/app.routes.ts @@ -5,6 +5,7 @@ import {devRoutes} from './dev/dev.routes'; import {errorRoutes} from './error-pages/error-pages.routes'; import {gmmRoutes} from './gmm/gmm.routes'; import {hazardRoutes} from './hazard/hazard.routes'; +import {internalRoutes} from './internal/internal.routes'; import {ncmRoutes} from './ncm/ncm.routes'; import {sourceRoutes} from './source/source.routes'; @@ -43,6 +44,11 @@ const routes: Routes = [ children: hazardRoutes(), path: 'hazard', }, + // Internal applications + { + children: internalRoutes(), + path: 'internal', + }, // Source model applications { children: sourceRoutes(), -- GitLab