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.
22 lines
565 B
22 lines
565 B
package router
|
|
|
|
import (
|
|
v1 "github.com/1Panel-dev/1Panel/backend/app/api/v1"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type BaseRouter struct{}
|
|
|
|
func (s *BaseRouter) InitBaseRouter(Router *gin.RouterGroup) {
|
|
baseRouter := Router.Group("auth")
|
|
baseApi := v1.ApiGroupApp.BaseApi
|
|
{
|
|
baseRouter.GET("/captcha", baseApi.Captcha)
|
|
baseRouter.POST("/mfalogin", baseApi.MFALogin)
|
|
baseRouter.POST("/login", baseApi.Login)
|
|
baseRouter.GET("/status", baseApi.CheckIsFirstLogin)
|
|
baseRouter.POST("/init", baseApi.InitUserInfo)
|
|
baseRouter.POST("/logout", baseApi.LogOut)
|
|
}
|
|
}
|