Turn off user social registration in django-allauth?

扶醉桌前 提交于 2019-11-30 17:00:27

问题


I noticed looking through the django-allauth templates there's a signup_closed.html users can be redirected to when user registration is closed or disabled. Does anyone who's familiar with that module know if there's a pre-configured setting that can be set in settings.py to turn off new user registration via existing social apps? Or do I need to configure that myself? I've read the full docs for allauth and I don't see any mention of it. Thanks.


回答1:


Looks like you need to override is_open_for_signup on your adapter.

See the code.




回答2:


More information at http://django-allauth.readthedocs.io/en/latest/advanced.html#custom-redirects.

You need to subclass allauth.account.adapter.DefaultAccountAdapter to override is_open_for_signup, and then set ACCOUNT_ADAPTER to your class in settings.py



来源:https://stackoverflow.com/questions/17923692/turn-off-user-social-registration-in-django-allauth

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!