rate limit thing
This commit is contained in:
parent
0ce3b90c68
commit
64c4cb25e1
2
main
2
main
|
@ -470,7 +470,7 @@ def apicomments(post_id):
|
||||||
return comments
|
return comments
|
||||||
|
|
||||||
@app.route("/cdn/<filename>", methods=("GET", "POST"))
|
@app.route("/cdn/<filename>", methods=("GET", "POST"))
|
||||||
@limiter.limit("15/second", override_defaults=False)
|
@limiter.exempt
|
||||||
def cdn(filename):
|
def cdn(filename):
|
||||||
if os.path.exists(os.path.join(UPLOAD_FOLDER, filename)):
|
if os.path.exists(os.path.join(UPLOAD_FOLDER, filename)):
|
||||||
return send_from_directory(UPLOAD_FOLDER, filename)
|
return send_from_directory(UPLOAD_FOLDER, filename)
|
||||||
|
|
Reference in New Issue