-
Hi, @Override
protected void configureClientActions(MultiBinding<Action> binding) {
super.configureClientActions(binding);
binding.add(BPMNPropertyPanelUpdateAction.class);
} The release notes state: Remove configureClientActions from DiagramModule as client actions are now implicitly configured via InitializeClientSession request Can someone give me a short example how my code should look like in version 2.0.0 ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @rsoika, |
Beta Was this translation helpful? Give feedback.
Hi @rsoika,
yes that is correct. The client now sends a list of all handled action kinds to the server in the
initializeClientSession
Request.This means it is no longer necessary to explicitly configure Client Actions on the server side. You can simply dispatch any action on the server that has a registered client handler (or command) and it will be automatically forwarded to the client.