Island: Remove unused GET from Registration resource

This commit is contained in:
Shreya Malviya 2022-08-02 14:13:25 +05:30
parent fb3a511a41
commit ec5b22aa87
1 changed files with 0 additions and 3 deletions

View File

@ -18,9 +18,6 @@ class Registration(AbstractResource):
def __init__(self, authentication_service: AuthenticationService):
self._authentication_service = authentication_service
def get(self):
return {"needs_registration": self._authentication_service.needs_registration()}
def post(self):
username, password = get_username_password_from_request(request)