From 7bb74889f0c803c478f9dece40e65004bbd22456 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 10 Aug 2024 00:55:25 +0900 Subject: fix(backend): fix base path of login/logout pages on local env --- backend/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backend/main.go') diff --git a/backend/main.go b/backend/main.go index c01394b..3296957 100644 --- a/backend/main.go +++ b/backend/main.go @@ -89,10 +89,10 @@ func main() { // For local dev: This is never used in production because the reverse // proxy sends /login and /logout to the app server. - e.GET("/login", func(c echo.Context) error { + e.GET("/iosdc-japan/2024/code-battle/login", func(c echo.Context) error { return c.Redirect(http.StatusPermanentRedirect, "http://localhost:5173/iosdc-japan/2024/code-battle/login") }) - e.POST("/logout", func(c echo.Context) error { + e.POST("/iosdc-japan/2024/code-battle/logout", func(c echo.Context) error { return c.Redirect(http.StatusPermanentRedirect, "http://localhost:5173/iosdc-japan/2024/code-battle/logout") }) -- cgit v1.2.3-70-g09d2