We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi
I am using with Vuejs3 setup
when I wanna use like this in component
acl.permission('update-post',post_id)
it doesn't work properly
acl.js
setRule('update-post', (user,post_id) =>{ console.log('post_id',post_id); return true })
and in console I get :
post_id undedfined
The text was updated successfully, but these errors were encountered:
hello use this style acl.can("update-post", [post_id])) or acl.permission("update-post", [post_id])) its worked for me
acl.can("update-post", [post_id]))
acl.permission("update-post", [post_id]))
Sorry, something went wrong.
No branches or pull requests
Hi
I am using with Vuejs3 setup
when I wanna use like this in component
it doesn't work properly
acl.js
and in console I get :
post_id undedfined
The text was updated successfully, but these errors were encountered: