aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/main.go
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-10 00:56:26 +0900
committernsfisis <nsfisis@gmail.com>2024-08-10 00:56:26 +0900
commita8f2594e8dcb741fb942092cbc53d64cf93132ef (patch)
treec694b162e9c33d9f805b3c473a9d042f27ac63b7 /backend/main.go
parent01fafac46390e540f4d8766d53177a69da7e64ae (diff)
parentc04691e046910f0e419370472abcf0a3c615d6b7 (diff)
downloadphperkaigi-2025-albatross-a8f2594e8dcb741fb942092cbc53d64cf93132ef.tar.gz
phperkaigi-2025-albatross-a8f2594e8dcb741fb942092cbc53d64cf93132ef.tar.zst
phperkaigi-2025-albatross-a8f2594e8dcb741fb942092cbc53d64cf93132ef.zip
Merge branch 'feat/security'
Diffstat (limited to 'backend/main.go')
-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")
})