You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice, if you could fire some module events, eg. when a user registers, get approved or requests a new password.
The main advantage of this approach would be, that you could easily plug-in custom application code, when a certain event happens.
Even sending the e-mail could be implemented with a callback, which would give you great flexibility.
But also notifying an internal service (eg. create a LDAP account), when a user has been approved could be a nice use-case.
The text was updated successfully, but these errors were encountered:
The module uses the User class to perform all such tasks. This class implements all required interfaces. This is where all the events should fire from. Since I don't want to enforce using any base class for this, there isn't really a good way to implement this. And since the User class is provided by the app (developer), not by the module, it could perform any number of additional tasks.
This could be however done in the ExampleUser class bundled with the extension. I wonder if it isn't going a bit too far in the future, maybe some more user feedback is required?
Sending email could be optional and/or moved to the User class as well.
That sounds nice so far.
One important thing to add here: Do not enforce a specific web-user class, like https://github.com/mishamx/yii-user did it. But as far as I understood you, this is not the case, I just want to address the pain points I had with Yii 1 extensions.
It would be nice, if you could fire some module events, eg. when a user registers, get approved or requests a new password.
The main advantage of this approach would be, that you could easily plug-in custom application code, when a certain event happens.
Even sending the e-mail could be implemented with a callback, which would give you great flexibility.
But also notifying an internal service (eg. create a LDAP account), when a user has been approved could be a nice use-case.
The text was updated successfully, but these errors were encountered: