system add middleware, update markfile, add data
This commit is contained in:
@@ -2,11 +2,12 @@ package router
|
||||
|
||||
import (
|
||||
"gin-vue-admin/api/v1"
|
||||
"gin-vue-admin/middleware"
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func InitSystemRouter(Router *gin.RouterGroup) {
|
||||
SystemRouter := Router.Group("system")
|
||||
SystemRouter := Router.Group("system").Use(middleware.JWTAuth(), middleware.CasbinHandler())
|
||||
{
|
||||
SystemRouter.POST("getSystemConfig", v1.GetSystemConfig) // 获取配置文件内容
|
||||
SystemRouter.POST("setSystemConfig", v1.SetSystemConfig) // 设置配置文件内容
|
||||
|
Reference in New Issue
Block a user