Initial commit
This commit is contained in:
parent
9ed5089508
commit
78e0e82449
16 changed files with 317 additions and 15 deletions
21
lib/route.js
21
lib/route.js
|
|
@ -47,4 +47,25 @@ FlowRouter.route('/userMgmt', {
|
|||
action() {
|
||||
this.render('MainLayout', { main: "userMgmt" });
|
||||
}
|
||||
});
|
||||
|
||||
FlowRouter.route('/workouts', {
|
||||
name: 'workouts',
|
||||
action() {
|
||||
this.render('MainLayout', { main: "workouts"});
|
||||
}
|
||||
});
|
||||
|
||||
FlowRouter.route('/meals', {
|
||||
name: 'meals',
|
||||
action() {
|
||||
this.render('MainLayout', { main: "meals"});
|
||||
}
|
||||
});
|
||||
|
||||
FlowRouter.route('/measurements', {
|
||||
name: 'measurements',
|
||||
action() {
|
||||
this.render('MainLayout', { main: "measurements"});
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue