Code Review
/
sdc
/
sdc-workflow-designer.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a1f1efb0514bdbc43d5c078dc4bb54b22822e703
[sdc/sdc-workflow-designer.git]
/
1
'use strict';
2
3
import inputOutputParameter from './implementation/InputOutputParameter';
4
import assign from 'lodash.assign';
5
6
module.exports = function(group, element, bpmnFactory, options, translate) {
7
group.entries = group.entries.concat(
8
inputOutputParameter(
9
element,
10
bpmnFactory,
11
assign({}, options),
12
translate
13
)
14
);
15
};