Permissions in workflows

Dear all,
is it possible to create workflows that can be used only by users belonging to a group?
For instance, group G1 should be able to access only workflows W1 and W2 meanwhile the group G2 should by able to access only workflows W3 and W4.
Users in G2 can’t see W1 and W2 as well as users in G1 can’t see W3 and W4.
Is it possible?
Regards

Hi,

yes it is possible. In the process model you can define potential starters. (see process initiation authorization).
After that you can query for process definition which user can start. (Example: https://github.com/flowable/flowable-engine/blob/d05e91fee90098973a117a45c438c2ee60baaa9e/modules/flowable-engine/src/test/java/org/flowable/examples/bpmn/authorization/StartAuthorizationTest.java

Regards
Martin

Thank you Martin,
maybe my question was not clear.
I would like the hide some workflows to some users/groups: when a user (having permissions to start a new process) login into Flowable GUI, he can see and start only his workflows.
Is it possible?
Thanks
Mario

Hi Mario,

The purpose of flowable-task application is to demonstrate basic flowable features. It is not part of flowable-task app, but it can be easily extended to support it.

Regards
Martin