-
Hey! First of all, I wanted to thank you for the practical project—amazing work! Now to my question: I have a vacation approval workflow that needs to be confirmed by N users. For this, I pass a list of user IDs as an array as a workflow argument. Multiple users can send a signal (including their user ID), but I’d never know when all users in the initial array have actually confirmed. Where should this information be stored? Possibly somewhere outside the workflow? I was considering whether I could modify the arguments within the workflow itself. For example, if user XXX confirms, I’d check if they’re in the list and remove them. Once the list is empty, the workflow would be considered complete. What would be the ideal solution for this? @rmcdaniel :) Best - Alex |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
So here is a simple example workflow that counts the number of approval signals received and then only completes after the minimum number of approvals has been received.
|
Beta Was this translation helpful? Give feedback.
So here is a simple example workflow that counts the number of …