2018-04-02 19:01:53 +00:00
|
|
|
import inherits from 'inherits';
|
2015-12-02 11:12:04 +00:00
|
|
|
|
2018-04-02 19:01:53 +00:00
|
|
|
import RuleProvider from 'diagram-js/lib/features/rules/RuleProvider';
|
2015-12-02 11:12:04 +00:00
|
|
|
|
2018-04-02 19:01:53 +00:00
|
|
|
|
|
|
|
export default function CustomRules(eventBus) {
|
2015-12-02 11:12:04 +00:00
|
|
|
RuleProvider.call(this, eventBus);
|
|
|
|
}
|
|
|
|
|
|
|
|
CustomRules.$inject = [ 'eventBus' ];
|
|
|
|
|
|
|
|
inherits(CustomRules, RuleProvider);
|
|
|
|
|
2016-06-07 06:46:45 +00:00
|
|
|
CustomRules.prototype.init = function() {
|
2019-08-19 08:39:20 +00:00
|
|
|
|
2015-12-02 15:47:20 +00:00
|
|
|
// placeholder
|
2018-04-02 19:01:53 +00:00
|
|
|
};
|