yii2-usuario
yii2-usuario copied to clipboard
Highly customizable and extensible user management, authentication, and authorization Yii2 extension
### What steps will reproduce the problem? Use yii2-usario with bootstrap 4 ### What is the expected result? Alerts to show ### What do you get instead? Alerts are invisible...
Hello, I have the following use case for my system: Registration: ->Admin registers a new user i.e. email, username and submits. ->Email is send to the user to confirm with...
It would be nice to have a "script" which would migrate a production database from dektrium/yii2-user to yii2-usuario Imho it needs a way to: 1. avoid migrations which would conflict...
### What steps will reproduce the problem? Create a user, assign a role or permission. Then delete that user. ### What is the expected result? Auth assignments should be removed....
Hi all, I notice that for logout, we issue a UserEvent: `$this->trigger(UserEvent::EVENT_AFTER_LOGOUT, $event);` which contains: `$event = $this->make(UserEvent::class, [Yii::$app->getUser()->getIdentity()]);` whereas for login we only issue a FormEvent: `$this->trigger(FormEvent::EVENT_AFTER_LOGIN, $event);` which...
I created an admin user, and common user. I created a rule for both profiles. But, when i want to create a permission, i can not write, or choose "children"...
As implemented on [Medium](https://medium.com/findworkco/password-less-login-df0354c3f3ee): email only login. The user receives a link with a *one time* token and once clicked on it they're logged in! Open for discussion...
Hey folks ! I have found the time to add some security related enhancements to the impersonation (switch-identity) feature: https://github.com/dektrium/yii2-user/pull/1014/files Should we port this over to yii2-usuario? What do you...
Instead of defining a global recaptcha component at the app level... wondering if we can define this instead as a configuration at the module level (since the recaptcha is a...
With this new feature new registered users need to get activated after registration by an administrator before they can use their account. Example here: https://github.com/jkmssoft/yii2-user/commit/11ed33c0b5b52d385883fa0e8a1df04e83584cde (I'm currently using my own...