vc
This commit is contained in:
parent
c3f9b38182
commit
a795bd39e9
10 changed files with 33 additions and 33 deletions
|
@ -68,7 +68,7 @@ def request_api_keys(v):
|
|||
|
||||
g.db.commit()
|
||||
|
||||
return redirect('/settings/apps')
|
||||
return redirect(f'{SITE_FULL}/settings/apps')
|
||||
|
||||
|
||||
@app.post("/delete_app/<aid>")
|
||||
|
@ -88,7 +88,7 @@ def delete_oauth_app(v, aid):
|
|||
|
||||
g.db.commit()
|
||||
|
||||
return redirect('/apps')
|
||||
return redirect(f'{SITE_FULL}/apps')
|
||||
|
||||
|
||||
@app.post("/edit_app/<aid>")
|
||||
|
@ -109,7 +109,7 @@ def edit_oauth_app(v, aid):
|
|||
|
||||
g.db.commit()
|
||||
|
||||
return redirect('/settings/apps')
|
||||
return redirect(f'{SITE_FULL}/settings/apps')
|
||||
|
||||
|
||||
@app.post("/admin/app/approve/<aid>")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue