Reorder checkin api location (move to event)
All checks were successful
Build Backend (NixCN CMS) TeamCity build finished
Build Frontend (NixCN CMS) TeamCity build finished

Signed-off-by: Asai Neko <sugar@sne.moe>
This commit is contained in:
2026-01-06 11:36:08 +08:00
parent 0710ffce72
commit 70846e0d1e
5 changed files with 46 additions and 54 deletions

View File

@@ -9,6 +9,6 @@ import (
func Handler(r *gin.RouterGroup) {
r.GET("/redirect", Redirect, middleware.JWTAuth(false))
r.POST("/magic", Magic)
r.POST("/refresh", Refresh)
r.POST("/token", Token)
r.POST("/refresh", Refresh)
}