add batch delete user token

This commit is contained in:
lejianwen
2024-12-06 10:36:27 +08:00
parent 7749ff0729
commit 1c5cd3ae62
4 changed files with 18 additions and 20 deletions

View File

@@ -195,6 +195,7 @@ func UserTokenBind(rg *gin.RouterGroup) {
cont := &admin.UserToken{}
aR.GET("/list", cont.List)
aR.POST("/delete", cont.Delete)
aR.POST("/batchDelete", cont.BatchDelete)
}
func ConfigBind(rg *gin.RouterGroup) {
aR := rg.Group("/config")