/**
* exists email
*
*/
export async function main(email: string) {
const url = new URL(`${BASE_URL}/api/users/exists/${email}`);
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Bearer " + WM_TOKEN,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 353 days ago
/**
* exists email
*
*/
export async function main(email: string) {
const url = new URL(`${BASE_URL}/api/users/exists/${email}`);
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Bearer " + WM_TOKEN,
},
body: undefined,
});
return await response.json();
}
Submitted by admin 424 days ago