Skip to content

Commit

Permalink
Fix typo (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
apragacz committed Aug 30, 2023
1 parent 8a21bba commit 7d1934e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rest_registration/api/views/reset_password.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def validate(self, attrs):
return attrs


class ResetPassordView(BaseAPIView):
class ResetPasswordView(BaseAPIView):
serializer_class = ResetPasswordSerializer
permission_classes = registration_settings.NOT_AUTHENTICATED_PERMISSION_CLASSES

Expand All @@ -91,7 +91,7 @@ def post(self, request: Request) -> Response:
return get_ok_response(_("Reset password successful"))


reset_password = ResetPassordView.as_view()
reset_password = ResetPasswordView.as_view()


def process_reset_password_data(input_data, serializer_context=None):
Expand Down

0 comments on commit 7d1934e

Please sign in to comment.