added user config for dark mode and navigation

This commit is contained in:
Brian McGonagill 2024-07-25 10:25:56 -05:00
parent 1d7ecc3efa
commit 40af926104
7 changed files with 82 additions and 16 deletions

View file

@ -122,4 +122,11 @@ FlowRouter.route('/cleanUp', {
action() {
BlazeLayout.render('MainLayout', { main: 'cleanUp'});
}
});
FlowRouter.route('/mySettings', {
name: 'mySettings',
action() {
BlazeLayout.render('MainLayout', { main: 'userConfig'});
}
});