-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
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
How to use authorization? #15
Comments
This isn't ideally handled at the admin component level. What you need to do is write a custom Menu component
Above is simplified for readability. You can then import this into Admin
Feed it to Admin
|
Thanks @kodepareek What about access directly to Is this approach secure? |
AOR is designed as an SPA so theoretically the entire page is to get loaded on the first connect with the server and no more JS etc is transferred from the server only data to be displayed via REST queries. The underlying assumption is that the user isn't sophisticated enough to set the role value in local storage. On the resource side, you need access control on your API side as well, setting permissions on the client will not eliminate need for that. |
The URL in the browser is more for the user's reference rather than actually indicative of the current data being displayed. Most of my pages make several queries on loading. |
I need to set some authorization rule for my admin
Resource
for example hide someResource
from side menu and prevent access to it.I read https://marmelab.com/admin-on-rest/Authorization.html and see this package https://github.com/marmelab/aor-permissions and also try this:
I used below code in my LoopBack boot script to create my roles:
But it's render below page after login with any user:

and this is my console error logs:
The text was updated successfully, but these errors were encountered: