mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-25 11:39:16 +08:00
21 lines
531 B
Go
21 lines
531 B
Go
package router
|
|
|
|
import (
|
|
v1 "github.com/1Panel-dev/1Panel/app/api/v1"
|
|
"github.com/1Panel-dev/1Panel/middleware"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type OperationLogRouter struct{}
|
|
|
|
func (s *OperationLogRouter) InitOperationLogRouter(Router *gin.RouterGroup) {
|
|
operationRouter := Router.Group("operations")
|
|
operationRouter.Use(middleware.JwtAuth()).Use(middleware.SessionAuth())
|
|
baseApi := v1.ApiGroupApp.BaseApi
|
|
{
|
|
operationRouter.POST("", baseApi.GetOperationList)
|
|
operationRouter.POST("/del", baseApi.DeleteOperation)
|
|
}
|
|
}
|