I need to be able to grant permissions to any user through a role to create and manage 'BpmnFlowchart' and 'BpmnProcess' without requiring them to be an administrator. How can we achieve this? I've tried changing the permission structure, but it doesn't seem to work.
Granting Permissions for Creating BpmnFlowchart to Non-Administrative Users
Collapse
X
-
Tags: None
-
Edit/Create is not allowed for regular user. The BPM tool has almost unlimited capabilities and a user can do a damage to the system or fetch some data.If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks. -
I understand, but the thing is we have a user who can handle this, but we don't want to grant them Administrator permissionsComment
-
Create a file custom/Espo/Custom/Resources/metadata/scopes/BpmnFlowhcart.json
Code:{ "aclActionList": ["create", "read", "edit", "delete"] }
Then clear cache.
After that, actions will appear in roles. Note that I didn't have a chance to test this.If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.Comment
Comment