feat: Change default redirect to Adults dashboard
All checks were successful
Build and Push / build (push) Successful in 8s
Deploy to K8s / deploy (push) Successful in 12s

Co-authored-by: Antigravity <antigravity@google.com>
This commit is contained in:
2026-03-11 13:13:05 +01:00
parent 3377092a3f
commit 61f2126c1b
2 changed files with 3 additions and 3 deletions

4
app.py
View File

@@ -105,8 +105,8 @@ def inject_render_time():
@app.route("/")
def index():
# Redirect root to /fees for convenience while there are no other apps
return '<meta http-equiv="refresh" content="0; url=/fees" />'
# Redirect root to /adults for convenience while there are no other apps
return '<meta http-equiv="refresh" content="0; url=/adults" />'
@app.route("/fees")
def fees():