From d70cc9ca3b99db8b6a0b84a639d1e878a29077e7 Mon Sep 17 00:00:00 2001 From: Jason Wall Date: Thu, 6 Aug 2020 16:48:24 -0400 Subject: [PATCH] remove settings page --- app/db/README.md | 1 - app/db/src/app/constants.ts | 2 -- app/db/src/app/services/app.service.ts | 1 - 3 files changed, 4 deletions(-) diff --git a/app/db/README.md b/app/db/README.md index 9e04e4ea..949db875 100644 --- a/app/db/README.md +++ b/app/db/README.md @@ -49,7 +49,6 @@ To get more help on the Angular CLI use `ng help` or go check out the [Angular C - Show Note Cross References \*\* - Login - Help Page -- Remove settings page (don't need them if you have page/note admin) - Settings for theme - Custom Colors for Light/Dark modes - Dark / Light / NightLight Mode diff --git a/app/db/src/app/constants.ts b/app/db/src/app/constants.ts index 2a0b2a55..7d78716f 100644 --- a/app/db/src/app/constants.ts +++ b/app/db/src/app/constants.ts @@ -1,13 +1,11 @@ export const PageTitles = { Search: 'Search', Help: 'Help', - Settings: 'Settings', }; export const PageIcons = { Search: 'search', Help: 'help', - Settings: 'settings', }; export const CardIcons = { diff --git a/app/db/src/app/services/app.service.ts b/app/db/src/app/services/app.service.ts index 59cc0a17..3ba792bf 100644 --- a/app/db/src/app/services/app.service.ts +++ b/app/db/src/app/services/app.service.ts @@ -48,7 +48,6 @@ const initialState: AppState = { savedPagesLoaded: false, mainPages: [ { title: PageTitles.Search, icon: PageIcons.Search, route: 'search' }, - { title: PageTitles.Settings, icon: PageIcons.Settings, route: 'settings' }, { title: PageTitles.Help, icon: PageIcons.Help, route: 'help' }, ], error: null,