d221c6e3ef0ae27cb9572bdf652922ec207ef9ab
[sdc/sdc-workflow-designer.git] /
1 import inputOutputParameter from './implementation/InputOutputParameter';
2 import assign from 'lodash.assign';
3
4 export default function(
5     group,
6     element,
7     bpmnFactory,
8     options,
9     translate,
10     config
11 ) {
12     group.entries = group.entries.concat(
13         inputOutputParameter(
14             element,
15             bpmnFactory,
16             assign({}, options),
17             translate,
18             config
19         )
20     );
21 }