Enable scheduled events locally per user configuration

1
I was wondering why it is possible for constants to be set per user-configuration, but scheduled events can only be locally enabled for the model as a whole. I would like to be able to have a certain scheduled event disabled locally for my configuration, but enabled for other developers.
asked
1 answers
1

This is indeed not possible. But what you can easily do is add a boolean constant with default value False. Then at the start of your scheduled event microflow check for the constant value and if it is false directly exit. Then you can set per configuration if you want the scheduled event to execute by setting this constant to true.

answered