1Panel/backend/router/ro_log.go

24 lines
726 B
Go
Raw Normal View History

2022-08-16 23:30:23 +08:00
package router
import (
v1 "github.com/1Panel-dev/1Panel/backend/app/api/v1"
"github.com/1Panel-dev/1Panel/backend/middleware"
2022-08-16 23:30:23 +08:00
"github.com/gin-gonic/gin"
)
2022-11-15 17:20:57 +08:00
type LogRouter struct{}
2022-08-16 23:30:23 +08:00
func (s *LogRouter) InitRouter(Router *gin.RouterGroup) {
2022-11-15 17:20:57 +08:00
operationRouter := Router.Group("logs")
operationRouter.Use(middleware.JwtAuth()).Use(middleware.SessionAuth()).Use(middleware.PasswordExpired())
2022-08-16 23:30:23 +08:00
baseApi := v1.ApiGroupApp.BaseApi
{
2023-01-04 22:31:51 +08:00
operationRouter.POST("/login", baseApi.GetLoginLogs)
operationRouter.POST("/operation", baseApi.GetOperationLogs)
operationRouter.POST("/clean", baseApi.CleanLogs)
operationRouter.GET("/system/files", baseApi.GetSystemFiles)
operationRouter.POST("/system", baseApi.GetSystemLogs)
2022-08-16 23:30:23 +08:00
}
}