rate limit login API
This commit is contained in:
parent
67e83fc2c7
commit
c72c2bbf72
1 changed files with 2 additions and 0 deletions
2
main
2
main
|
@ -252,6 +252,8 @@ def apiuserinfo():
|
|||
"error": "no authentication"
|
||||
}, 403
|
||||
|
||||
|
||||
@limiter.limit("10/minute", override_defaults=False)
|
||||
@app.route("/api/login", methods=("GET", "POST"))
|
||||
def apilogin():
|
||||
usersession = request.cookies.get("session_DO_NOT_SHARE")
|
||||
|
|
Reference in a new issue