fusenapi/server/auth/internal/handler/routes.go

58 lines
1.3 KiB
Go
Raw Normal View History

2023-07-24 09:22:06 +00: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 03:47:22 +00:00
{
Method: http.MethodPost,
Path: "/api/auth/register",
Handler: UserRegisterHandler(serverCtx),
},
2023-07-24 09:22:06 +00:00
{
Method: http.MethodPost,
2023-07-24 11:17:02 +00:00
Path: "/api/auth/accept-cookie",
2023-07-24 09:22:06 +00:00
Handler: AcceptCookieHandler(serverCtx),
},
{
Method: http.MethodGet,
2023-07-24 11:17:02 +00:00
Path: "/api/auth/oauth2/login/google",
2023-07-24 09:22:06 +00:00
Handler: UserGoogleLoginHandler(serverCtx),
},
2023-07-26 16:03:38 +00:00
{
Method: http.MethodGet,
Path: "/api/auth/email/confirmation",
Handler: UserEmailConfirmationHandler(serverCtx),
},
2023-07-24 09:22:06 +00:00
{
2023-08-11 09:39:18 +00:00
Method: http.MethodPost,
2023-07-24 11:43:56 +00:00
Path: "/api/auth/oauth2/register",
2023-07-24 09:22:06 +00:00
Handler: UserEmailRegisterHandler(serverCtx),
},
2023-08-11 09:39:18 +00:00
{
Method: http.MethodGet,
Path: "/api/auth/reset/token",
Handler: UserResetTokenHandler(serverCtx),
},
{
Method: http.MethodPost,
Path: "/api/auth/reset/password",
Handler: UserResetPasswordHandler(serverCtx),
},
2023-07-24 09:22:06 +00:00
},
)
}