Camunda gives us an opportunity to delete a process instance. It could be done either REST API or through the cockpit. We also can delete an instance using Camunda Java API.
So I would like to have a java listener which is executed on a process instance delete event.
Thanks! I tried to remove a process via UI. Today I used REST API endpoint to remove a process and listener was invoked.
Also I found out if we remove process bu REST we have skipCustomListener=false.
And if I remove a process using UI I can see this property as a true.
I think this is the problem.
Do you know the way how to set mentioned property to false globally?
Thank you @Yana. This helped me to set skipCustomListerer to false and hide it.
In my case, I added a config.js file in app/cockpit/scripts/ folder - src/main/resources/META-INF/resources/app/tasklist/scripts/config.js
And now this modal window looks like