mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-21 18:20:50 +00:00
Every import of the module changes, not only the seven packages that
moved out of sdk/pkg: Go requires the major version in the path from v2
on. Both happen in one pass —
go run github.com/go-admin-team/go-admin-core/tools/coreupgrade@v2.0.0 -w -v2 .
go mod tidy
— which is the command the release notes give, run here as a consumer
would run it. 210 imports across 95 files.
The compatibility shims this used are gone in v2, so the paths that
moved had to move: sdk/pkg/captcha, sdk/pkg/jwtauth and its user
package, sdk/pkg/response and sdk/pkg/casbin.
The count of unformatted files is unchanged at 34, none of them touched
by this: the tool reformats a file only if it was already gofmt clean,
so a migration cannot disappear into whitespace.
38 lines
1.1 KiB
Go
38 lines
1.1 KiB
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, registerDictRouter)
|
|
}
|
|
|
|
func registerDictRouter(v1 *gin.RouterGroup, authMiddleware *jwt.GinJWTMiddleware) {
|
|
dictApi := apis.SysDictType{}
|
|
dataApi := apis.SysDictData{}
|
|
dicts := v1.Group("/dict").Use(authMiddleware.MiddlewareFunc()).Use(middleware.AuthCheckRole())
|
|
{
|
|
|
|
dicts.GET("/data", dataApi.GetPage)
|
|
dicts.GET("/data/:dictCode", dataApi.Get)
|
|
dicts.POST("/data", dataApi.Insert)
|
|
dicts.PUT("/data/:dictCode", dataApi.Update)
|
|
dicts.DELETE("/data", dataApi.Delete)
|
|
|
|
dicts.GET("/type-option-select", dictApi.GetAll)
|
|
dicts.GET("/type", dictApi.GetPage)
|
|
dicts.GET("/type/:id", dictApi.Get)
|
|
dicts.POST("/type", dictApi.Insert)
|
|
dicts.PUT("/type/:id", dictApi.Update)
|
|
dicts.DELETE("/type", dictApi.Delete)
|
|
}
|
|
opSelect := v1.Group("/dict-data").Use(authMiddleware.MiddlewareFunc()).Use(middleware.AuthCheckRole())
|
|
{
|
|
opSelect.GET("/option-select", dataApi.GetAll)
|
|
}
|
|
}
|