bpmn-js/test/util/custom-rules/CustomRules.js

19 lines
370 B
JavaScript
Raw Normal View History

'use strict';
var inherits = require('inherits');
var RuleProvider = require('diagram-js/lib/features/rules/RuleProvider');
function CustomRules(eventBus) {
RuleProvider.call(this, eventBus);
}
CustomRules.$inject = [ 'eventBus' ];
inherits(CustomRules, RuleProvider);
CustomRules.prototype.init = function () {
// placeholder
};
module.exports = CustomRules;