BerniWittmann/cape-frontend

View on GitHub
src/plugins/bpmn/modules/custom-rules/customRules.js

Summary

Maintainability
A
0 mins
Test Coverage
import setupRules from './rules'
/**
 * Customizes the Modeling Rules
 *
 */
class CustomRules {
  constructor(eventBus, elementRegistry, commandStack) {
    setupRules({ eventBus, elementRegistry, commandStack })
  }
}

CustomRules.$inject = ['eventBus', 'elementRegistry', 'commandStack']

export default CustomRules