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:
@ -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)
|
||||
})
|
||||
}
|
||||
}
|
@ -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},
|
||||
|
Reference in New Issue
Block a user