Yuom Theara
Yuom Theara
I have the same problem with this. But I don't understand to fix. could clarify for me?
Work fine. Very thanks.
I have the same problem. @Akryum, could example for this (asynchronous navigation guards). I tried ```js router.beforeResolve((to, from, next) => { // Check user if (!Meteor.loggingIn() && !Meteor.userId()) { next({path:...
It always alert `no role` when refresh page.
Thanks for your reply. could example how to solve (I don't understand)?
do you have any solution to manage `Role` in `Vue`? for example we check it outside of `router`...
Now I tries ```js // Method export const userIsInRole = new ValidatedMethod({ name: 'userIsInRole', mixins: [CallPromiseMixin], validate: new SimpleSchema({ role: {type: String}, }).validator(), run({role}) { if (!this.isSimulation) { return Roles.userIsInRole(Meteor.userId(),...
I create `Files, Pub, Security` via doc in global variable. I can upload photo in the form, but I can not get `url` to view photo in `` ``` js...