mirror of
https://github.com/wekan/wekan.git
synced 2025-04-23 13:37:09 -04:00
Require signed-in user for My Cards, Due Cards, and global search
This commit is contained in:
parent
a79a5c7299
commit
856f3bf864
1 changed files with 3 additions and 0 deletions
|
@ -115,6 +115,7 @@ FlowRouter.route('/shortcuts', {
|
|||
|
||||
FlowRouter.route('/my-cards', {
|
||||
name: 'my-cards',
|
||||
triggersEnter: [AccountsTemplates.ensureSignedIn],
|
||||
action() {
|
||||
Filter.reset();
|
||||
// EscapeActions.executeAll();
|
||||
|
@ -133,6 +134,7 @@ FlowRouter.route('/my-cards', {
|
|||
|
||||
FlowRouter.route('/due-cards', {
|
||||
name: 'due-cards',
|
||||
triggersEnter: [AccountsTemplates.ensureSignedIn],
|
||||
action() {
|
||||
Filter.reset();
|
||||
// EscapeActions.executeAll();
|
||||
|
@ -151,6 +153,7 @@ FlowRouter.route('/due-cards', {
|
|||
|
||||
FlowRouter.route('/global-search', {
|
||||
name: 'global-search',
|
||||
triggersEnter: [AccountsTemplates.ensureSignedIn],
|
||||
action() {
|
||||
Filter.reset();
|
||||
// EscapeActions.executeAll();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue