73 lines
1.7 KiB
Go
Raw Normal View History

2023-07-24 17:22:06 +08:00
// Code generated by goctl. DO NOT EDIT.
package handler
import (
"net/http"
"fusenapi/server/auth/internal/svc"
"github.com/zeromicro/go-zero/rest"
)
func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
server.AddRoutes(
[]rest.Route{
{
Method: http.MethodPost,
Path: "/api/auth/login",
Handler: UserLoginHandler(serverCtx),
},
2023-08-24 11:47:22 +08:00
{
Method: http.MethodPost,
Path: "/api/auth/register",
Handler: UserRegisterHandler(serverCtx),
},
2023-07-24 17:22:06 +08:00
{
Method: http.MethodPost,
2023-07-24 19:17:02 +08:00
Path: "/api/auth/accept-cookie",
2023-07-24 17:22:06 +08:00
Handler: AcceptCookieHandler(serverCtx),
},
2023-10-17 17:25:48 +08:00
{
Method: http.MethodPost,
Path: "/api/auth/debug/token/create",
Handler: UserDebugTokenHandler(serverCtx),
},
2023-07-24 17:22:06 +08:00
{
Method: http.MethodGet,
2023-07-24 19:17:02 +08:00
Path: "/api/auth/oauth2/login/google",
2023-07-24 17:22:06 +08:00
Handler: UserGoogleLoginHandler(serverCtx),
},
2023-07-27 00:03:38 +08:00
{
Method: http.MethodGet,
Path: "/api/auth/email/confirmation",
Handler: UserEmailConfirmationHandler(serverCtx),
},
2023-07-24 17:22:06 +08:00
{
2023-08-11 17:39:18 +08:00
Method: http.MethodPost,
2023-07-24 19:43:56 +08:00
Path: "/api/auth/oauth2/register",
2023-07-24 17:22:06 +08:00
Handler: UserEmailRegisterHandler(serverCtx),
},
2023-08-11 17:39:18 +08:00
{
2023-09-04 00:06:55 +08:00
Method: http.MethodPost,
2023-08-11 17:39:18 +08:00
Path: "/api/auth/reset/token",
Handler: UserResetTokenHandler(serverCtx),
},
{
Method: http.MethodPost,
Path: "/api/auth/reset/password",
Handler: UserResetPasswordHandler(serverCtx),
},
2023-09-05 15:00:45 +08:00
{
2023-09-05 15:44:17 +08:00
Method: http.MethodGet,
2023-09-05 15:00:45 +08:00
Path: "/api/auth/reset/password/html",
Handler: UserResetPasswordHtmlHandler(serverCtx),
},
2023-08-29 18:06:39 +08:00
{
Method: http.MethodPost,
2023-08-29 18:13:49 +08:00
Path: "/api/auth/debug/delete",
2023-08-29 18:06:39 +08:00
Handler: DebugAuthDeleteHandler(serverCtx),
},
2023-07-24 17:22:06 +08:00
},
)
}