Hello
Is there a way to ensure that the execution of a task is distributed fairly to the users eligible by role? (Like a Round-Robin-Distribution)
The use case is as follows: Task1 is executed e.g. six times a day and should be distributed evenly to three users of a certain role:
Task1.1 --> User1
Task1.2 --> User2
Task1.3 --> User3
Task1.4 --> User1
....
Can something like this be implemented out of the box or is custom code/logic required?
Many thanks in advance