mirror of
https://github.com/jackeilles/xygt.git
synced 2024-11-29 02:02:39 +01:00
I sure do love forgetting to save and committing
This commit is contained in:
parent
17f7aa02be
commit
e7a6acd9f3
1 changed files with 20 additions and 6 deletions
|
@ -163,11 +163,6 @@ def getData(id):
|
||||||
else:
|
else:
|
||||||
return random.choice(Errors.file404)
|
return random.choice(Errors.file404)
|
||||||
|
|
||||||
@app.route('/<id>/info')
|
|
||||||
def getInfo(id):
|
|
||||||
|
|
||||||
return worker.idInfo(id)
|
|
||||||
|
|
||||||
@csrf.exempt
|
@csrf.exempt
|
||||||
@app.route('/<id>/delete')
|
@app.route('/<id>/delete')
|
||||||
def delete(id):
|
def delete(id):
|
||||||
|
@ -265,7 +260,26 @@ def resetidpass():
|
||||||
else:
|
else:
|
||||||
return f"Your new IDPass is \n {idpass}\n This will only be shown once, please save it somewhere safe."
|
return f"Your new IDPass is \n {idpass}\n This will only be shown once, please save it somewhere safe."
|
||||||
|
|
||||||
|
### API Endpoint ###
|
||||||
|
|
||||||
|
@app.route('/api')
|
||||||
|
def api():
|
||||||
|
return {"error": "Specify an API version."}
|
||||||
|
|
||||||
|
@app.route('/api/v1')
|
||||||
|
def v3():
|
||||||
|
return {"status": "ok"}
|
||||||
|
|
||||||
|
@app.route('/api/v1/user/<id>')
|
||||||
|
def getUser(id):
|
||||||
|
return worker.userInfo(id)
|
||||||
|
|
||||||
|
@app.route('/api/v1/file/<id>')
|
||||||
|
def getInfo(id):
|
||||||
|
return worker.idInfo(id)
|
||||||
|
|
||||||
|
### Error Handlers ###
|
||||||
|
|
||||||
@app.errorhandler(404)
|
@app.errorhandler(404)
|
||||||
def page_not_found(e):
|
def page_not_found():
|
||||||
return random.choice(Errors.file404), 404
|
return random.choice(Errors.file404), 404
|
||||||
|
|
Loading…
Reference in a new issue