I am trying to figure out a way to end / complete subsequent tasks if a particular variable is assigned when one user completes a task.
The user story behind it is:
As a user, I want to trigger an instant revise scenario in the workflow. So that I don’t have to wait for other responses from users.
This is because I have failed the task, and I expect it to go back into revision before I review it again.
There is no point on other users reviewing it as I’ve failed it.
So the functionality I need is to complete all other tasks before that gate
At the moment I am looping through with a piece of javascript on my frontend, which has hardcoded values checking until all tasks have been done.
This obviously is a bad solution, so looking for better ways to do this?
Thanks