mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
Public boards overview
This commit is contained in:
parent
8f28a409c7
commit
edf52bc438
6 changed files with 42 additions and 8 deletions
|
|
@ -26,6 +26,27 @@ FlowRouter.route('/', {
|
|||
},
|
||||
});
|
||||
|
||||
FlowRouter.route('/public', {
|
||||
name: 'public',
|
||||
triggersEnter: [AccountsTemplates.ensureSignedIn],
|
||||
action() {
|
||||
Session.set('currentBoard', null);
|
||||
Session.set('currentList', null);
|
||||
Session.set('currentCard', null);
|
||||
|
||||
Filter.reset();
|
||||
EscapeActions.executeAll();
|
||||
|
||||
Utils.manageCustomUI();
|
||||
Utils.manageMatomo();
|
||||
|
||||
BlazeLayout.render('defaultLayout', {
|
||||
headerBar: 'boardListHeaderBar',
|
||||
content: 'boardList',
|
||||
});
|
||||
},
|
||||
});
|
||||
|
||||
FlowRouter.route('/b/:id/:slug', {
|
||||
name: 'board',
|
||||
action(params) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue