mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-10 17:13:30 +08:00
21 lines
596 B
Go
21 lines
596 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 BaseRouter struct{}
|
|
|
|
func (s *BaseRouter) InitBaseRouter(Router *gin.RouterGroup) {
|
|
baseRouter := Router.Group("auth")
|
|
withRecordRouter := Router.Group("auth").Use(middleware.OperationRecord())
|
|
baseApi := v1.ApiGroupApp.BaseApi
|
|
{
|
|
baseRouter.GET("captcha", baseApi.Captcha)
|
|
baseRouter.POST("mfalogin", baseApi.MFALogin)
|
|
withRecordRouter.POST("login", baseApi.Login)
|
|
withRecordRouter.POST("logout", baseApi.LogOut)
|
|
}
|
|
}
|