logout should redirect to root, not home

This commit is contained in:
dandds 2018-09-28 15:46:34 -04:00
parent 8b8d694abd
commit b137a41a8f

View File

@ -84,7 +84,7 @@ def login_redirect():
@bp.route("/logout") @bp.route("/logout")
def logout(): def logout():
_logout() _logout()
return redirect(url_for(".home")) return redirect(url_for(".root"))
@bp.route("/activity-history") @bp.route("/activity-history")