Change demo account email (#7177)

Change the demo account's email to be able to set SIGN_IN_PREFIL = true
on demo.twenty.com
This commit is contained in:
Félix Malfait
2024-09-20 13:55:46 +02:00
committed by GitHub
parent 0aa48fb1e4
commit f845187f8e
3 changed files with 11 additions and 11 deletions

View File

@ -24,7 +24,7 @@ export const seedUserWorkspaces = async (
workspaceId: workspaceId,
},
{
userId: DEMO_SEED_USER_IDS.JULIA,
userId: DEMO_SEED_USER_IDS.TIM,
workspaceId: workspaceId,
},
])

View File

@ -7,7 +7,7 @@ const tableName = 'user';
export const DEMO_SEED_USER_IDS = {
NOAH: '20202020-9e3b-46d4-a556-88b9ddc2b035',
HUGO: '20202020-3957-4908-9c36-2929a23f8358',
JULIA: '20202020-7169-42cf-bc47-1cfef15264b9',
TIM: '20202020-7169-42cf-bc47-1cfef15264b9',
};
export const seedUsers = async (
@ -47,10 +47,10 @@ export const seedUsers = async (
defaultWorkspaceId: workspaceId,
},
{
id: DEMO_SEED_USER_IDS.JULIA,
firstName: 'Julia',
lastName: 'S',
email: 'julia.s@demo.dev',
id: DEMO_SEED_USER_IDS.TIM,
firstName: 'Tim',
lastName: 'Apple',
email: 'tim@apple.dev',
passwordHash:
'$2b$10$66d.6DuQExxnrfI9rMqOg.U1XIYpagr6Lv05uoWLYbYmtK0HDIvS6', // Applecar2025
defaultWorkspaceId: workspaceId,