We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c4a2a0 commit aaaea39Copy full SHA for aaaea39
dj_rest_auth/registration/views.py
@@ -60,7 +60,6 @@ def get_response_data(self, user):
60
return api_settings.JWT_SERIALIZER(data, context=self.get_serializer_context()).data
61
elif self.token_model:
62
return api_settings.TOKEN_SERIALIZER(user.auth_token, context=self.get_serializer_context()).data
63
-
64
return None
65
66
def create(self, request, *args, **kwargs):
@@ -103,7 +102,7 @@ class VerifyEmailView(APIView, ConfirmEmailView):
103
102
Verifies the email associated with the provided key.
104
105
Accepts the following POST parameter: key.
106
- """
+ """
107
permission_classes = (AllowAny,)
108
allowed_methods = ('POST', 'OPTIONS', 'HEAD')
109
0 commit comments