feat: add return statement to createCompanyUser and createPersonalUser functions
This commit is contained in:
parent
7b2eb4dbf0
commit
879c504abd
@ -2,6 +2,7 @@ const UnitOfWork = require('../database/UnitOfWork');
|
||||
const argon2 = require('argon2');
|
||||
|
||||
async function createCompanyUser() {
|
||||
return
|
||||
// Edit these values directly in code (no env vars)
|
||||
const companyEmail = 'dummy-company@profitplanet.local';
|
||||
const companyPassword = 'dummyPass!1234';
|
||||
|
||||
@ -2,6 +2,7 @@ const UnitOfWork = require('../database/UnitOfWork');
|
||||
const argon2 = require('argon2');
|
||||
|
||||
async function createPersonalUser() {
|
||||
return;
|
||||
// Edit these values directly in code (no env vars)
|
||||
const personalEmail = 'dummy-personal@profitplanet.local';
|
||||
const personalPassword = 'dummyPass!1234';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user