forked from MarseyWorld/MarseyWorld
redirect to /login if the person has logged into the site before
parent
c5966d3c70
commit
2099e31b6a
|
@ -19,7 +19,8 @@ def error_401(e):
|
||||||
path = request.path
|
path = request.path
|
||||||
qs = urlencode(dict(request.values))
|
qs = urlencode(dict(request.values))
|
||||||
argval = quote(f"{path}?{qs}", safe='')
|
argval = quote(f"{path}?{qs}", safe='')
|
||||||
return redirect(f"/signup?redirect={argval}")
|
if session.get("history"): return redirect(f"/login?redirect={argval}")
|
||||||
|
else: return redirect(f"/signup?redirect={argval}")
|
||||||
|
|
||||||
@app.errorhandler(406)
|
@app.errorhandler(406)
|
||||||
def error_406(e):
|
def error_406(e):
|
||||||
|
|
Loading…
Reference in New Issue