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.
31 lines
865 B
31 lines
865 B
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)
|
|
}
|
|
}
|