1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-06-21 00:55:17 +00:00

Can check through the API whether an email address exists or not

This commit is contained in:
2019-12-28 17:05:24 +01:00
parent 506f75f6f1
commit fb96a76e4e
3 changed files with 30 additions and 0 deletions

View File

@ -64,4 +64,18 @@ export class AccountController {
userID: handler.getUserId()
});
}
/**
* Check out whether an email is associated to an account
* or not
*
* @param h Request handler
*/
public static async ExistsMail(h: RequestHandler) {
const email = h.postEmail("email");
h.send({
exists: await AccountHelper.ExistsEmail(email)
})
}
}

View File

@ -43,6 +43,8 @@ export const Routes : Route[] = [
{path: "/account/id", cb: (h) => AccountController.CurrentUserID(h)},
{path: "/user/getCurrentUserID", cb: (h) => AccountController.CurrentUserID(h)}, // Legacy
{path: "/account/exists_email", cb: (h) => AccountController.ExistsMail(h), needLogin: false},
// User controller
{path: "/user/getInfo", cb: (h) => UserController.GetSingle(h), needLogin: false},