You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FlowRouter.route('/home',{// calls just before the actiontriggersEnter: [checkPermissions],action: function(){// do something you like}});functioncheckPermissions(context,redirect,stop){returnhttp.get('/path/to/service',params).catch(e=>{stop();});}
Where the action does not get executed unto the Promise is resolved?
The text was updated successfully, but these errors were encountered:
Is it possible to run triggers asynchronously?
For exampls :
Where the action does not get executed unto the
Promise
is resolved?The text was updated successfully, but these errors were encountered: