Adding functionality for Tasks.

This commit is contained in:
Brian McGonagill 2022-09-05 15:30:20 -05:00
parent 947abfb76f
commit 56b27d6b05
13 changed files with 234 additions and 9 deletions

View file

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