aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--backend/main.go4
1 files changed, 2 insertions, 2 deletions
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")
})