Skip to content

Commit

Permalink
Only expect a key on E-Mail-Verification when receiving a request (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
georgkrause committed Oct 22, 2022
1 parent bf168d9 commit 6b394d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dj_rest_auth/registration/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def save(self, request):


class VerifyEmailSerializer(serializers.Serializer):
key = serializers.CharField()
key = serializers.CharField(write_only=True)


class ResendEmailVerificationSerializer(serializers.Serializer):
Expand Down

0 comments on commit 6b394d9

Please sign in to comment.