Working Auth0 on site

This commit is contained in:
2021-09-28 21:29:15 -05:00
parent d4d904d165
commit 8855709a34
11 changed files with 138 additions and 9 deletions

View File

@@ -55,7 +55,6 @@ const register = async (user = {}) => {
* Get user by email address
* @param {string} email
*/
const getByEmail = async (email) => {
// Validate
if (!email) {
@@ -86,7 +85,6 @@ const getByEmail = async (email) => {
* Get user by id
* @param {string} id
*/
const getById = async (id) => {
// Validate
if (!id) {