feat(seeder): add ACME Corp and Wile E. Coyote user
This commit is contained in:
parent
c8a281ef06
commit
625bfc1e89
2 changed files with 4 additions and 2 deletions
|
|
@ -32,7 +32,8 @@ const companyData = [
|
|||
{ name: 'MediaForge', desc: 'Digital media production' },
|
||||
{ name: 'TravelTech', desc: 'Travel technology platform' },
|
||||
{ name: 'PropTech', desc: 'Real estate technology' },
|
||||
{ name: 'SocialHub', desc: 'Social media technology' }
|
||||
{ name: 'SocialHub', desc: 'Social media technology' },
|
||||
{ name: 'ACME Corporation', desc: 'Innovation in Failure' }
|
||||
];
|
||||
|
||||
const cities = [
|
||||
|
|
|
|||
|
|
@ -43,7 +43,8 @@ export async function seedUsers() {
|
|||
const admins = [
|
||||
{ identifier: 'takeshi_yamamoto', fullName: 'Takeshi Yamamoto', company: 'TechCorp', email: 'takeshi@techcorp.com', pass: 'Takeshi@2025', roles: ['admin'] },
|
||||
{ identifier: 'kenji', fullName: 'Kenji Tanaka', company: 'AppMakers', email: 'kenji@appmakers.mobile', pass: 'Takeshi@2025', roles: ['admin'] },
|
||||
{ identifier: 'maria_santos', fullName: 'Maria Santos', company: 'DesignHub', email: 'maria@designhub.com', pass: 'User@2025', roles: ['recruiter'] }
|
||||
{ identifier: 'maria_santos', fullName: 'Maria Santos', company: 'DesignHub', email: 'maria@designhub.com', pass: 'User@2025', roles: ['recruiter'] },
|
||||
{ identifier: 'wile_e_coyote', fullName: 'Wile E. Coyote', company: 'ACME Corporation', email: 'wile@acme.com', pass: 'MeepMeep@123', roles: ['admin'] }
|
||||
];
|
||||
|
||||
for (const admin of admins) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue