From a1e5e39a4836543047a4f114e7c63fc8664a575c Mon Sep 17 00:00:00 2001 From: Stephanie Gredell Date: Thu, 21 Nov 2024 13:22:17 -0800 Subject: [PATCH] fix status codes --- auth/auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/auth.go b/auth/auth.go index 1a6ae57..cb3b9f7 100644 --- a/auth/auth.go +++ b/auth/auth.go @@ -40,7 +40,7 @@ func Callback(c *gin.Context) { } // For now, redirect to profile page after successful login - c.Redirect(http.StatusTemporaryRedirect, "/") + c.Redirect(http.StatusTemporaryRedirect, "/welcome") } func Logout(c *gin.Context) {