7 lines
176 B
Python
Executable File
7 lines
176 B
Python
Executable File
from allauth.account.adapter import DefaultAccountAdapter
|
|
|
|
|
|
class SignupDisabledAdapter(DefaultAccountAdapter):
|
|
def is_open_for_signup(self, request):
|
|
return False
|