mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-11-27 07:27:02 +00:00
### What problem does this PR solve? Feat: add forgot password reset (update naming style), solve #8547 ### Type of change - [X] New Feature (non-breaking change which adds functionality)
This commit is contained in:
parent
70ffe2b4e8
commit
0f62bfda21
@ -843,10 +843,10 @@ def set_tenant_info():
|
||||
return server_error_response(e)
|
||||
|
||||
|
||||
@manager.route("/forget/get-captcha", methods=["GET"]) # noqa: F821
|
||||
def forget_get_otp():
|
||||
@manager.route("/forget/captcha", methods=["GET"]) # noqa: F821
|
||||
def forget_get_captcha():
|
||||
"""
|
||||
GET /forget/get-captcha?email=<email>
|
||||
GET /forget/captcha?email=<email>
|
||||
- Generate an image captcha and cache it in Redis under key captcha:{email} with TTL = OTP_TTL_SECONDS.
|
||||
- Returns the captcha as a PNG image.
|
||||
"""
|
||||
@ -869,10 +869,10 @@ def forget_get_otp():
|
||||
return Response(img_bytes, mimetype="image/png")
|
||||
|
||||
|
||||
@manager.route("/forget/send-otp", methods=["POST"]) # noqa: F821
|
||||
@manager.route("/forget/otp", methods=["POST"]) # noqa: F821
|
||||
def forget_send_otp():
|
||||
"""
|
||||
POST /forget/send-otp
|
||||
POST /forget/otp
|
||||
- Verify the image captcha stored at captcha:{email} (case-insensitive).
|
||||
- On success, generate an email OTP (A–Z with length = OTP_LENGTH), store hash + salt (and timestamp) in Redis with TTL, reset attempts and cooldown, and send the OTP via email.
|
||||
"""
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user