We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f77e4e commit 615eea3Copy full SHA for 615eea3
server/router/system/sys_operation_record.go
@@ -2,15 +2,14 @@ package system
2
3
import (
4
v1 "github.com/flipped-aurora/gin-vue-admin/api/v1"
5
- "github.com/flipped-aurora/gin-vue-admin/middleware"
6
"github.com/gin-gonic/gin"
7
)
8
9
type OperationRecordRouter struct {
10
}
11
12
func (s *OperationRecordRouter) InitSysOperationRecordRouter(Router *gin.RouterGroup) {
13
- operationRecordRouter := Router.Group("sysOperationRecord").Use(middleware.OperationRecord())
+ operationRecordRouter := Router.Group("sysOperationRecord")
14
var authorityMenuApi = v1.ApiGroupApp.SystemApiGroup.OperationRecordApi
15
{
16
operationRecordRouter.POST("createSysOperationRecord", authorityMenuApi.CreateSysOperationRecord) // 新建SysOperationRecord
0 commit comments