Skip to content
Snippets Groups Projects
Commit b42d9823 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

add dashboards

parent 9fce4025
No related branches found
No related tags found
1 merge request!537Dashboards
......@@ -70,6 +70,8 @@ export interface DevHazardApplications {
* ERP design maps applications.
*/
export interface DesignMapsApplications {
/** Design map dashboard */
dashboard: Navigation;
rtgm: Navigation;
}
......@@ -105,6 +107,8 @@ export interface HazardApplications {
* NCM applications.
*/
export interface NcmApplications {
/** NCM dashboard */
dashboard: Navigation;
/** Geophysical profiles application */
geophysicalProfiles: Navigation;
}
......@@ -113,6 +117,8 @@ export interface NcmApplications {
* Source applications
*/
export interface SourceApplications {
/** Source model dashboard */
dashboard: Navigation;
/** Data mapping application */
data: Navigation;
/** Magnitude frequency distribution application */
......
......@@ -13,6 +13,11 @@ export function apps(): Applications {
routerLink: '/',
},
designMaps: {
dashboard: {
display: 'Design Maps Dashboard',
routerLink: '/designmaps',
showInDashboard: false,
},
rtgm: {
display: 'Risk-Targeted Ground Motion',
routerLink: '/designmaps/rtgm',
......@@ -57,6 +62,11 @@ export function apps(): Applications {
},
},
ncm: {
dashboard: {
display: 'NCM Dashboard',
routerLink: '/ncm',
showInDashboard: false,
},
geophysicalProfiles: {
display: 'NCM Geophysical Profiles',
routerLink: '/ncm/geophysical-profiles',
......@@ -67,6 +77,11 @@ export function apps(): Applications {
routerLink: '/services',
},
source: {
dashboard: {
display: 'Source Model Dashboard',
routerLink: '/source',
showInDashboard: false,
},
data: {
display: 'Model Maps',
routerLink: '/source/model-maps',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment