My big initial commit to this repo and project.

This commit is contained in:
Brian McGonagill 2022-08-05 16:55:56 -05:00
parent 750811a81f
commit 8636f8cf9b
2433 changed files with 199488 additions and 1042 deletions

View file

@ -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' });
}
});