mirror of
https://gitlab.com/comunic/comunicapiv2
synced 2025-06-20 16:45:16 +00:00
Can get the ID of a user from its email address
This commit is contained in:
@ -209,6 +209,21 @@ export class RequestHandler {
|
||||
return userID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Find user ID based on its email address, included in a POST request
|
||||
*
|
||||
* @param name The name of the POST field containing the email address of the user
|
||||
*/
|
||||
public async postUserIdFromEmail(name: string) : Promise<number> {
|
||||
const email = this.postEmail(name);
|
||||
const userID = await AccountHelper.FindIDFromEmail(email);
|
||||
|
||||
if(userID < 1)
|
||||
this.error(404, "Email not found!");
|
||||
|
||||
return userID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a POST group ID
|
||||
*
|
||||
|
Reference in New Issue
Block a user