Added Task Mgmt, and framework for Recipes.

This commit is contained in:
Brian McGonagill 2022-09-05 09:39:54 -05:00
parent 3b9a54daf1
commit 947abfb76f
13 changed files with 430 additions and 1 deletions

View file

@ -108,4 +108,11 @@ FlowRouter.route('/menuItems', {
action() {
BlazeLayout.render('MainLayout', { main: 'menuItems' });
}
});
FlowRouter.route('/taskHome', {
name: 'taskHome',
action() {
BlazeLayout.render('MainLayout', { main: 'taskHome' });
}
});