feat: batch set server config (#983)

* feat: batch set server config

* run in parallel

* fix route

* fix

* return some information

* fix order
This commit is contained in:
UUBulb
2025-02-04 11:25:49 +08:00
committed by GitHub
parent 29d716b935
commit a41f623dd2
6 changed files with 69 additions and 37 deletions

View File

@@ -110,8 +110,8 @@ func routers(r *gin.Engine, frontendDist fs.FS) {
auth.GET("/server", listHandler(listServer))
auth.PATCH("/server/:id", commonHandler(updateServer))
auth.GET("/server/:id/config", commonHandler(getServerConfig))
auth.POST("/server/:id/config", commonHandler(setServerConfig))
auth.GET("/server/config/:id", commonHandler(getServerConfig))
auth.POST("/server/config", commonHandler(setServerConfig))
auth.POST("/batch-delete/server", commonHandler(batchDeleteServer))
auth.POST("/force-update/server", commonHandler(forceUpdateServer))