mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
My big initial commit to this repo and project.
This commit is contained in:
parent
750811a81f
commit
8636f8cf9b
2433 changed files with 199488 additions and 1042 deletions
|
|
@ -5,38 +5,6 @@ FlowRouter.route('/', {
|
|||
}
|
||||
});
|
||||
|
||||
// ------- System Admin flows -----------
|
||||
|
||||
FlowRouter.route('/systemAdminReg', {
|
||||
name: 'sysAdminReg',
|
||||
action() {
|
||||
BlazeLayout.render('MainLayout', { notLoggedIn: "systemAdminReg" });
|
||||
}
|
||||
});
|
||||
|
||||
FlowRouter.route('/sysAdminLogin', {
|
||||
name: 'sysAdminLogin',
|
||||
action() {
|
||||
BlazeLayout.render('MainLayout', { notLoggedIn: "systemAdminLogin" });
|
||||
}
|
||||
});
|
||||
|
||||
FlowRouter.route('/adminMainLogin', {
|
||||
name: 'sysAdminLogin',
|
||||
action() {
|
||||
BlazeLayout.render('MainLayout', { notLoggedIn: "systemAdminLogin" });
|
||||
}
|
||||
});
|
||||
|
||||
FlowRouter.route('/createServiceEntity', {
|
||||
name: 'createServiceEntity',
|
||||
action() {
|
||||
BlazeLayout.render('MainLayout', { main: "createServiceEntity" });
|
||||
}
|
||||
});
|
||||
|
||||
// ------- General User Flows --------
|
||||
|
||||
FlowRouter.route('/dashboard', {
|
||||
name: 'home',
|
||||
action() {
|
||||
|
|
@ -44,30 +12,23 @@ FlowRouter.route('/dashboard', {
|
|||
}
|
||||
});
|
||||
|
||||
FlowRouter.route('/parguarlogin', {
|
||||
name: 'parentLogin',
|
||||
FlowRouter.route('/login', {
|
||||
name: 'login',
|
||||
action() {
|
||||
BlazeLayout.render('MainLayout', { notLoggedIn: "parentLogin" });
|
||||
BlazeLayout.render('MainLayout', { notLoggedIn: "login" });
|
||||
}
|
||||
});
|
||||
|
||||
FlowRouter.route('/parentReg', {
|
||||
name: 'parentReg',
|
||||
FlowRouter.route('/reg', {
|
||||
name: 'reg',
|
||||
action() {
|
||||
BlazeLayout.render('MainLayout', { notLoggedIn: "parentsRegistration" });
|
||||
BlazeLayout.render('MainLayout', { notLoggedIn: "reg" });
|
||||
}
|
||||
});
|
||||
|
||||
FlowRouter.route('/teachlogin', {
|
||||
name: 'teachLogin',
|
||||
FlowRouter.route('/userMgmt', {
|
||||
name: 'userMgmt',
|
||||
action() {
|
||||
BlazeLayout.render('MainLayout', { notLoggedIn: "teacherLogin" });
|
||||
}
|
||||
});
|
||||
|
||||
FlowRouter.route('/teachReg', {
|
||||
name: 'teachReg',
|
||||
action() {
|
||||
BlazeLayout.render('MainLayout', { notLoggedIn: "teacherRegistration" });
|
||||
BlazeLayout.render('MainLayout', { main: 'userMgmt' });
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue