Many changes aded to system.
This commit is contained in:
parent
e0571d14b7
commit
5ba618f471
22 changed files with 640 additions and 57 deletions
14
lib/route.js
14
lib/route.js
|
|
@ -47,4 +47,18 @@ FlowRouter.route('/userMgmt', {
|
|||
action() {
|
||||
this.render('MainLayout', { main: "userMgmt" });
|
||||
}
|
||||
});
|
||||
|
||||
FlowRouter.route('/locations', {
|
||||
name: 'locations',
|
||||
action() {
|
||||
this.render('MainLayout', { main: "locations" });
|
||||
}
|
||||
});
|
||||
|
||||
FlowRouter.route('/locationTypes', {
|
||||
name: 'locationtypes',
|
||||
action() {
|
||||
this.render('MainLayout', { main: "locationTypes" });
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue