This commit is contained in:
eson 2023-08-29 18:13:49 +08:00
parent a24b110214
commit fc96d181b3
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
},
{
Method: http.MethodPost,
Path: "/api/debug/auth/delete",
Path: "/api/auth/debug/delete",
Handler: DebugAuthDeleteHandler(serverCtx),
},
},

View File

@ -35,7 +35,7 @@ service auth {
post /api/auth/reset/password(RequestUserResetPassword) returns (response);
@handler DebugAuthDeleteHandler
post /api/debug/auth/delete(RequestAuthDelete) returns (response);
post /api/auth/debug/delete(RequestAuthDelete) returns (response);
}
type (