feat: add return statement to createCompanyUser and createPersonalUser functions

This commit is contained in:
seaznCode 2026-01-19 22:12:06 +01:00
parent 7b2eb4dbf0
commit 879c504abd
2 changed files with 2 additions and 0 deletions

View File

@ -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';

View File

@ -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';