diff --git a/server/cshr/views/auth.py b/server/cshr/views/auth.py index cf02d724..fde4471c 100644 --- a/server/cshr/views/auth.py +++ b/server/cshr/views/auth.py @@ -52,7 +52,7 @@ def post(self, request: Request) -> Response: user = get_user_by_email(user_email) if not user.is_active: return CustomResponse.unauthorized( - message="You don't have permission to perform this action." + message="Incorrect old password. Please ensure that the password provided is accurate." ) return CustomResponse.success( data=serializer.custom_token(data=serializer.data),