Skip to content
Discussion options

You must be logged in to vote

I've found a solution for this. I went in diagram-module file on the server side and updated the order of the bindings so that the super.configureOperationHandlers(binding) line is last, with my custom handlers coming first like so:

protected override configureOperationHandlers(binding: InstanceMultiBinding<OperationHandlerConstructor>): void {
   binding.add(handler1);
   binding.add(handler2);
   super.configureOperationHandlers(binding);
}

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@planger
Comment options

Answer selected by rileydanejohnston
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants