delete floattrip.csv

pull/143/head
Aevann 2023-04-26 08:57:18 +02:00
parent 7367043cdd
commit 0626622ce9
1 changed files with 0 additions and 10 deletions

View File

@ -400,13 +400,3 @@ def transfers(v:User):
def donate(v):
if v.shadowbanned or v.agendaposter == 1: abort(404)
return render_template(f'donate.html', v=v)
@app.get('/floattrip.csv')
@limiter.limit(DEFAULT_RATELIMIT)
@is_not_permabanned
def floattrip(v):
if SITE != 'rdrama.net' or v.id not in (1, 4480):
abort(403)
resp = make_response(send_file('/floattrip.csv'))
return resp