Properly register POST /users/:userId/confirmPhone

This commit is contained in:
Colin McDonald 2016-07-10 15:49:29 -04:00
parent 5e44d53216
commit ecaf008f66
1 changed files with 1 additions and 0 deletions

View File

@ -363,6 +363,7 @@ public final class APIv3 extends AbstractVerticle {
http.get("/users/:userId/requiresTotp").handler(new GETUsersIdRequiresTotp());
http.get("/users/:userId/verifyPassword").blockingHandler(new GETUsersIdVerifyPassword(), 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/login").blockingHandler(new POSTUsersIdLogin());
http.post("/users/:userId/notify").blockingHandler(new POSTUsersIdNotify(), false);