17 lines
410 B
JavaScript
17 lines
410 B
JavaScript
|
'use strict';
|
||
|
|
||
|
var assign = require('lodash/assign');
|
||
|
|
||
|
var inputOutputParameter = require('./implementation/InputOutputParameter');
|
||
|
|
||
|
module.exports = function(group, element, bpmnFactory, options, translate) {
|
||
|
|
||
|
options = assign({
|
||
|
idPrefix: 'connector-',
|
||
|
insideConnector: true
|
||
|
}, options);
|
||
|
|
||
|
group.entries = group.entries.concat(inputOutputParameter(element, bpmnFactory, options, translate));
|
||
|
|
||
|
};
|