Add event joined router
All checks were successful
Client CMS Check Build (NixCN CMS) TeamCity build finished
Backend Check Build (NixCN CMS) TeamCity build finished

Signed-off-by: Asai Neko <sugar@sne.moe>
This commit is contained in:
2026-02-08 14:49:11 +08:00
parent 0e51c1ee39
commit bd23a53fbb
2 changed files with 1 additions and 4 deletions

View File

@@ -23,4 +23,5 @@ func ApiHandler(r *gin.RouterGroup) {
r.POST("/join", eventHandler.Join)
r.GET("/list", eventHandler.List)
r.GET("/attendance", middleware.Permission(40), eventHandler.AttendanceList)
r.GET("/joined", eventHandler.Joined)
}