mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-17 18:59:54 +08:00
3e3f0d9452
#### What this PR does / why we need it? #### Summary of your change #### Please indicate you've done the following: - [ ] Made sure tests are passing and test coverage is added if needed. - [ ] Made sure commit message follow the rule of [Conventional Commits specification](https://www.conventionalcommits.org/). - [ ] Considered the docs impact and opened a new docs issue or PR with docs changes if needed.
24 lines
666 B
Go
24 lines
666 B
Go
package router
|
|
|
|
import (
|
|
v1 "github.com/1Panel-dev/1Panel/backend/app/api/v1"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type BaseRouter struct{}
|
|
|
|
func (s *BaseRouter) InitRouter(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("/issafety", baseApi.CheckIsSafety)
|
|
baseRouter.POST("/logout", baseApi.LogOut)
|
|
baseRouter.GET("/demo", baseApi.CheckIsDemo)
|
|
baseRouter.GET("/language", baseApi.GetLanguage)
|
|
baseRouter.GET("/respagecode", baseApi.GetResponsePage)
|
|
}
|
|
}
|