From 3fb360aa77a6e41af42fae065212b0af29c37aa0 Mon Sep 17 00:00:00 2001 From: ramforth Date: Mon, 17 Nov 2025 01:03:31 +0100 Subject: [PATCH] prep: Making way for the planned 'Dashboard' page --- auth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auth.py b/auth.py index dc9c6a7..90f9a3d 100644 --- a/auth.py +++ b/auth.py @@ -103,5 +103,5 @@ async def auth_twitch_callback(code: str, state: str, request: Request, db: Sess db.commit() # Redirect to a future dashboard page for a better user experience - # For now, we can redirect back to the home page. - return RedirectResponse(url="/") \ No newline at end of file + # This prepares us for Task 1.4 (Session Management) and Task 2.1 (Dashboard UI) + return RedirectResponse(url="/dashboard") \ No newline at end of file