fds
This commit is contained in:
parent
f3e482c2eb
commit
440eb0aad1
3 changed files with 38 additions and 1 deletions
|
@ -425,4 +425,11 @@ def settings_security(v):
|
|||
@app.get("/.well-known/assetlinks.json")
|
||||
def googleplayapp():
|
||||
with open("files/assets/assetlinks.json", "r") as f:
|
||||
return Response(f.read(), mimetype='application/json')
|
||||
return Response(f.read(), mimetype='application/json')
|
||||
|
||||
|
||||
|
||||
@app.post("/dismiss_mobile_tip")
|
||||
def dismiss_mobile_tip():
|
||||
session["tooltip_last_dismissed"] = int(time.time())
|
||||
return "", 204
|
Loading…
Add table
Add a link
Reference in a new issue