system add middleware, update markfile, add data

This commit is contained in:
SliverHorn
2020-10-23 13:57:41 +08:00
parent d478246edc
commit 2baf392129
5 changed files with 9 additions and 4 deletions

View File

@@ -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) // 设置配置文件内容