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
478 B
21 lines
478 B
2 years ago
|
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 WebsiteGroupRouter struct {
|
||
|
}
|
||
|
|
||
|
func (a *WebsiteGroupRouter) InitWebsiteGroupRouter(Router *gin.RouterGroup) {
|
||
|
groupRouter := Router.Group("websites/groups")
|
||
|
groupRouter.Use(middleware.JwtAuth()).Use(middleware.SessionAuth())
|
||
|
|
||
|
baseApi := v1.ApiGroupApp.BaseApi
|
||
|
{
|
||
|
groupRouter.GET("", baseApi.GetGroups)
|
||
|
}
|
||
|
}
|