Răsfoiți Sursa

fix: change language cause unexpected redirect #189

Jacky 1 an în urmă
părinte
comite
ba4aeb85ca
1 a modificat fișierele cu 3 adăugiri și 3 ștergeri
  1. 3 3
      server/router/routers.go

+ 3 - 3
server/router/routers.go

@@ -33,6 +33,9 @@ func InitRouter() *gin.Engine {
 		root.POST("/login", api.Login)
 		root.DELETE("/logout", api.Logout)
 
+		// translation
+		root.GET("translation/:code", api.GetTranslation)
+
 		w := root.Group("/", authRequired(), proxyWs())
 		{
 			// Analytic
@@ -144,9 +147,6 @@ func InitRouter() *gin.Engine {
 
 			// node
 			g.GET("node", api.GetCurrentNode)
-
-			// translation
-			g.GET("translation/:code", api.GetTranslation)
 		}
 	}