layout | title | parent | nav_order | permalink |
---|---|---|---|---|
default |
Roles |
Authentication |
1 |
/oauth/roles |
{: .no_toc }
{: .no_toc .text-delta }
- TOC {:toc}
By default Zendro exposes three different roles for their users.
To evaluate roles on the GraphQL server Zendro decodes the access_token and reads the roles out it. Keycloak by default sends the user-roles as part of the token, however if any other OAuth2 service is used, that function has to be adapted accordingly. Zendro exposes a /getRolesForOauth2Token
on the GraphQL server to read the roles from the decoded token. A getRoles()
utility function can be used to adapt that functionality according to the users needs.
Users with administrator permissions have access to the keycloak admin-cli and all its functionalities, including user-management and other keycloak configurations.
Users with editor permissions can use Zendro's write API functions (create, update, delete) through the web-interfaces or directly via the GraphQL API.
Users with read permissions can use Zendro's read API functions (count, read-one, read-many, search, sort, paginate) through the web-interfaces or directly via the GraphQL API.