Avoid parallel flows

Hi there!

I’m wondering if there is any way I can prevent creating parallel sequence flows. For example, I want to offer only the exclusive gateway, and make some checks to avoid having many sequence flows on the outcome of a user task. In addition, limit the types of tasks the user can create would be great.

Thats it :smile:

Thanks!
Cristian.

TLDR; Not out of the box, you need to customize bpmn-js.

There are a number of components you need to implement custom modeling palette/rules:

At some point we will provide functionality to make this kind of customization easier. We are not there yet, though.

2 Likes

Nice!

I’ll give it a try.

Thanks!

Hi Nikku,

Is it possible to avoid more than one outgoing sequence flow from a certain activity o User Task ?

I’m looking at the code in ModelingRules, but can’t find this particular case.

Thanks!
Cristian.

Nevermind! I found it.
Just for the record, you can just do–> businessObject.get(‘outgoing’).length >= n
And then make some conditions
bpmn-js rocks!