I have a processflow that does some logging and calling an api when certain tasks are executed.
This works fine except for one task.
This task also calls another processflow and therefor never calls my api processflow…
My first idea was “can I call a processflow from another processflow?”, well it seems I can do that with a subflow…
But a subflow cannot call a task (I use a task to collect data before logging and calling the api).
I can add the logic also to the processflow that is being executed but I rather keep everything in a single location ;)
Any suggestions?