mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-22 10:33:13 +00:00
`gofmt -l` listed 26 files. Seventeen of them were missing the newline at the end of the file; the rest are indentation that used spaces where the file uses tabs, a handful of call sites written `f(a,b)`, and the doc comment spacing gofmt has rewritten since 1.19 (`//X` to `// X`). Nothing here changes behaviour: `go build ./...` and `go vet ./...` are clean and `go test ./common/...` passes, which is the half of the tree these files are concentrated in. Only the files gofmt named are touched, so the diff reads line by line rather than as a reflow of the whole repository. `gofmt -l` is now empty, which is the precondition for gating it in CI -- worth doing, but a separate change.
33 lines
725 B
Go
33 lines
725 B
Go
package router
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
jwt "github.com/go-admin-team/go-admin-core/v2/jwtauth"
|
|
"go-admin/app/admin/apis"
|
|
"go-admin/common/middleware"
|
|
)
|
|
|
|
func init() {
|
|
routerCheckRole = append(routerCheckRole, registerSysDeptRouter)
|
|
}
|
|
|
|
// 需认证的路由代码
|
|
func registerSysDeptRouter(v1 *gin.RouterGroup, authMiddleware *jwt.GinJWTMiddleware) {
|
|
api := apis.SysDept{}
|
|
|
|
r := v1.Group("/dept").Use(authMiddleware.MiddlewareFunc()).Use(middleware.AuthCheckRole())
|
|
{
|
|
r.GET("", api.GetPage)
|
|
r.GET("/:id", api.Get)
|
|
r.POST("", api.Insert)
|
|
r.PUT("/:id", api.Update)
|
|
r.DELETE("", api.Delete)
|
|
}
|
|
|
|
r1 := v1.Group("").Use(authMiddleware.MiddlewareFunc())
|
|
{
|
|
r1.GET("/deptTree", api.Get2Tree)
|
|
}
|
|
|
|
}
|