vmes-flowable
Version:
ceshibao
19 lines (13 loc) • 342 B
JavaScript
;
function RemoveConnectionCommand(params, modeling) {
return {
args: [
params.element('connection')
],
exec: function(connection) {
return modeling.removeConnection(connection);
}
};
}
RemoveConnectionCommand.$inject = [ 'cli._params', 'modeling' ];
module.exports = RemoveConnectionCommand;