forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-07-09 13:07:43 +02:00
parent 8590456eaa
commit f3fbb5c743
1 changed files with 8 additions and 0 deletions

View File

@ -21,6 +21,14 @@ import requests
from urllib.parse import quote, urlencode
@app.get('/confidential')
@admin_level_required(3)
def confidential(v):
if v.id != AEVANN_ID: abort(403)
resp = make_response(send_from_directory('assets', 'confedntial'))
return resp
@app.post('/kippy')
@admin_level_required(3)
def kippy(v):