Security
On this page
The security is based on privileges granted on entities tied to a part of the organisation (the scope of the grant). Privileges can only be granted on roles and then users are mapped to one or many roles.
Privileges and scopes
The available privileges are:
entity_get
- the privilege to read an entity (also applied for FETCH queries that include the entity)entity_insert
- the privilege to create an entityentity_update
- the privilege to update an entityentity_delete
- the privilege to delete an entityentity_change_ownership
- the privilege to change the ownership of an entity
Child entities inherit the privileges from the parent, except when used in a FETCH query in which case an
entity_get
privilege is required.The available scopes:
All
- the privilege is for all entities throughout the systemOrganization
- the privilege applies only for the entities within the organization of the userBusinessUnit
- the privilege applies only for the entities within the business unit of the userOwner
- the privilege applies only for the entities owned by the userNone
- restricts the user from the privilege (this is the default value)
Examples
You want to create a role named “Workers” for which all users belonging to it will have the privilege to read all the tasks in their business unit and the privilege to create, update and delete only the tasks owned by the user. Here is how to configure it:
- Create the “Workers” role using the Roles designer.
- Grant the following privileges using the Entity security designer.
Entity | Privilege | Scope | Descriere |
---|---|---|---|
task | entity_get | BusinessUnit | Can read all tasks in each user`s business unit. |
task | entity_insert | Owner | Can only create tasks owned by the respective user. |
task | entity_update | Owner | Can only update tasks owned by the respective user. |
task | entity_delete | Owner | Can only delete tasks owned by the respective user. |
If you wish to create a “Supervisors” role with reading and deleting privileges for all entities and the possibility to assign entities to other users within its department, the security is configured as follows:
- Create the “Supervisors” role using the Roles designer.
- Grant the following privileges using the Entity security designer.
Entity | Privilege | Scope | Description |
---|---|---|---|
task | entity_get | BusinessUnit | He can read all the entities in his department. |
task | entity_delete | BusinessUnit | It can delete all entities in its department. |
task | entity_update | BusinessUnit | Can update and/or assign all entities in his department to other users. |