|
@@ -140,6 +140,26 @@ FlowRouter.route('/information', {
|
|
|
},
|
|
|
});
|
|
|
|
|
|
+FlowRouter.route('/people', {
|
|
|
+ name: 'people',
|
|
|
+ triggersEnter: [
|
|
|
+ AccountsTemplates.ensureSignedIn,
|
|
|
+ () => {
|
|
|
+ Session.set('currentBoard', null);
|
|
|
+ Session.set('currentCard', null);
|
|
|
+
|
|
|
+ Filter.reset();
|
|
|
+ EscapeActions.executeAll();
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ action() {
|
|
|
+ BlazeLayout.render('defaultLayout', {
|
|
|
+ headerBar: 'settingHeaderBar',
|
|
|
+ content: 'people',
|
|
|
+ });
|
|
|
+ },
|
|
|
+});
|
|
|
+
|
|
|
FlowRouter.notFound = {
|
|
|
action() {
|
|
|
BlazeLayout.render('defaultLayout', { content: 'notFound' });
|