same as last commit

pull/225/head
Aevann 2024-02-25 01:45:09 +02:00
parent fc83b0a7a1
commit 144b811712
1 changed files with 2 additions and 2 deletions

View File

@ -710,8 +710,8 @@ def delete_all_hole_banners(v, hole):
@app.post("/h/<hole>/marsey_image")
@limiter.limit('1/second', scope=rpath)
@limiter.limit('1/second', scope=rpath, key_func=get_ID)
@limiter.limit("10/minute;50/day", deduct_when=lambda response: response.status_code < 400)
@limiter.limit("10/minute;50/day", deduct_when=lambda response: response.status_code < 400, key_func=get_ID)
@limiter.limit("5/minute;50/day", deduct_when=lambda response: response.status_code < 400)
@limiter.limit("5/minute;50/day", deduct_when=lambda response: response.status_code < 400, key_func=get_ID)
@auth_required
def hole_marsey(v, hole):
if g.is_tor: abort(403, "Image uploads are not allowed through TOR!")