amnah / yii2-user

Yii2 user authentication module
MIT License
253 stars 104 forks source link

Disable registration #136

Closed archagy closed 8 years ago

archagy commented 8 years ago

I'm not sure if there are way to disable registration via module like "enableRegistration => false".

amnah commented 8 years ago

Unfortunately there isn't. You'll need to extend the default controller, something like this:

public function actionRegister()
{
    return $this->redirect(["/user/login"]);
}
archagy commented 8 years ago

Thanks for the answer !