Properly register POST /users/:userId/confirmPhone
This commit is contained in:
parent
5e44d53216
commit
ecaf008f66
@ -363,6 +363,7 @@ public final class APIv3 extends AbstractVerticle {
|
|||||||
http.get("/users/:userId/requiresTotp").handler(new GETUsersIdRequiresTotp());
|
http.get("/users/:userId/requiresTotp").handler(new GETUsersIdRequiresTotp());
|
||||||
http.get("/users/:userId/verifyPassword").blockingHandler(new GETUsersIdVerifyPassword(), false);
|
http.get("/users/:userId/verifyPassword").blockingHandler(new GETUsersIdVerifyPassword(), false);
|
||||||
http.post("/users/:userId/changePassword").blockingHandler(new POSTUsersIdChangePassword(), false);
|
http.post("/users/:userId/changePassword").blockingHandler(new POSTUsersIdChangePassword(), false);
|
||||||
|
http.post("/users/:userId/confirmPhone").blockingHandler(new POSTUsersIdConfirmPhone(), false);
|
||||||
http.post("/users/:userId/leave").handler(new POSTUsersIdLeave());
|
http.post("/users/:userId/leave").handler(new POSTUsersIdLeave());
|
||||||
http.post("/users/:userId/login").blockingHandler(new POSTUsersIdLogin());
|
http.post("/users/:userId/login").blockingHandler(new POSTUsersIdLogin());
|
||||||
http.post("/users/:userId/notify").blockingHandler(new POSTUsersIdNotify(), false);
|
http.post("/users/:userId/notify").blockingHandler(new POSTUsersIdNotify(), false);
|
||||||
|
Loading…
Reference in New Issue
Block a user