mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
555 B
21 lines
555 B
2 years ago
|
package router
|
||
|
|
||
|
import (
|
||
2 years ago
|
v1 "github.com/1Panel-dev/1Panel/backend/app/api/v1"
|
||
|
"github.com/1Panel-dev/1Panel/backend/middleware"
|
||
2 years ago
|
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
2 years ago
|
type LogRouter struct{}
|
||
2 years ago
|
|
||
2 years ago
|
func (s *LogRouter) InitLogRouter(Router *gin.RouterGroup) {
|
||
|
operationRouter := Router.Group("logs")
|
||
2 years ago
|
operationRouter.Use(middleware.JwtAuth()).Use(middleware.SessionAuth()).Use(middleware.PasswordExpired())
|
||
2 years ago
|
baseApi := v1.ApiGroupApp.BaseApi
|
||
|
{
|
||
2 years ago
|
operationRouter.POST("login", baseApi.GetLoginLogs)
|
||
|
operationRouter.POST("operation", baseApi.GetOperationLogs)
|
||
2 years ago
|
}
|
||
|
}
|