Adding Log Entry

This commit is contained in:
Brian McGonagill 2026-02-08 11:03:21 -06:00
parent e8649038ad
commit b5bab7b2a6
6 changed files with 230 additions and 0 deletions

View file

@ -82,4 +82,11 @@ FlowRouter.route('/logbook', {
action() {
this.render('MainLayout', { main: "logbook"});
}
});
FlowRouter.route('/logEntry', {
name: 'logEntry',
action() {
this.render('MainLayout', { main: 'logEntry'});
}
});