This repository has been archived on 2023-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
imageify/src/utils/helpers/userHelpers.js

11 lines
276 B
JavaScript
Raw Normal View History

2022-11-13 20:19:41 +00:00
/**
* Returns the user with the given email address
2022-11-13 20:19:41 +00:00
*
* @param {string} email The users email address
* @return The users object in mongo or null if not found
2022-11-13 20:19:41 +00:00
*/
export async function getUser(email) {
const user = await UserModel.find({ email: email });
return user;
2022-11-13 20:19:41 +00:00
}