mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-11 01:23:31 +08:00
30 lines
865 B
Go
30 lines
865 B
Go
package router
|
|
|
|
import (
|
|
v1 "github.com/1Panel-dev/1Panel/backend/app/api/v1"
|
|
"github.com/1Panel-dev/1Panel/backend/middleware"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type GroupRouter struct{}
|
|
|
|
func (s *GroupRouter) InitGroupRouter(Router *gin.RouterGroup) {
|
|
groupRouter := Router.Group("groups").
|
|
Use(middleware.JwtAuth()).
|
|
Use(middleware.SessionAuth()).
|
|
Use(middleware.PasswordExpired())
|
|
withRecordRouter := Router.Group("groups").
|
|
Use(middleware.JwtAuth()).
|
|
Use(middleware.SessionAuth()).
|
|
Use(middleware.PasswordExpired()).
|
|
Use(middleware.OperationRecord())
|
|
baseApi := v1.ApiGroupApp.BaseApi
|
|
{
|
|
withRecordRouter.POST("", baseApi.CreateGroup)
|
|
withRecordRouter.DELETE(":id", baseApi.DeleteGroup)
|
|
withRecordRouter.PUT(":id", baseApi.UpdateGroup)
|
|
groupRouter.POST("/search", baseApi.ListGroup)
|
|
groupRouter.GET(":id", baseApi.GetGroupInfo)
|
|
}
|
|
}
|