diff --git a/app/routes.py b/app/routes.py index c217d59..b5bcca2 100644 --- a/app/routes.py +++ b/app/routes.py @@ -115,6 +115,11 @@ def healthz(): return '' +@app.route('/home', methods=['GET']) +def home(): + return redirect(url_for('.index')) + + @app.route('/', methods=['GET']) @auth_required def index(): diff --git a/app/templates/header.html b/app/templates/header.html index 3a23f54..0ba701c 100644 --- a/app/templates/header.html +++ b/app/templates/header.html @@ -4,7 +4,7 @@