Proposal #1: Multiple Roles per User and separation between Permissions and Access Scopes
This design tries to address two of the missing features of the current implementation:
- Multiple Roles per User
- Separation between Access Scopes (Organization, Facility, Workspace, Room) and Permissions
Multiple Roles per User
Allowing a User to have more than 1 Role give us the possibility to define very specific Roles and then compose them in different ways to create different logical roles. This composition of Roles also makes possible to reuse already defined Roles simplifying their configuration.
In the application, when a permission needs to be enforced, the group of all the Permissions from all the Roles the User has is going to be used. Permissions are always added when creating the group of all the Permissions a User has.
Access Scopes
In the current implementation, some Permissions are associated to an Organization and some of them are not. This tightly-coupled relationship between Permissions and Organizations makes impossible (or very cumbersome) to create a more fine-grained and friendly way of defining Permissions.
The new approach is to define different Access Scopes. An Access Scope grants access to one or more Organization, Facility, Workspace and/or Room. The Access Scope is defined by the Role/s a User has and all the Permissions are evaluated in this scope.
All the Permissions a User has are evaluated in the same Access Scope
Add Comment