I'm trying to perform an action after the update of member properties on @@personal-information, but the event is not being fired. On configure.zcml I've put the following:
<subscriber
for="Products.PluggableAuthService.interfaces.events.IPropertiesUpdatedEvent"
handler=".subscribers.propertiesUpdated"
/>
I've already tried to use ipdb to check if propertiesUpdated of subscribers.py is being executed, but it's not.
I've checked the https://bugs.launchpad.net/zope-pas/+bug/795086 bug report, that says this bug has been fixed, but it's still not working.
I'm using PluggableAuthService 1.10.0.
Is there a better way to solve this issue?