fix: change language cause unexpected redirect #189

This commit is contained in:
Jacky 2023-11-12 18:15:46 +08:00 committed by GitHub
parent 4ec19c9cda
commit ba4aeb85ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)
}
}