-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathseeds.ts
47 lines (47 loc) · 1.16 KB
/
seeds.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
export const users = [
{
email: '[email protected]',
name: 'USDR Admin',
role: 'USDR_ADMIN',
agency: {
name: 'Main Agency',
abbreviation: 'MAUSDR',
code: 'MAUSDR',
organizationId: 1,
},
agencyId: 1, // TO_DEPRECATE
organizationId: 1, // TO_DEPRECATE
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
},
{
email: '[email protected]',
name: 'Organization Admin',
role: 'ORGANIZATION_ADMIN',
agency: {
name: 'Main Agency',
abbreviation: 'MAUSDR',
code: 'MAUSDR',
organizationId: 1,
},
agencyId: 1, // TO_DEPRECATE
organizationId: 1, // TO_DEPRECATE
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
},
{
email: '[email protected]',
name: 'Organization Staff',
role: 'ORGANIZATION_STAFF',
agency: {
name: 'Main Agency',
abbreviation: 'MAUSDR',
code: 'MAUSDR',
organizationId: 1,
},
agencyId: 1, // TO_DEPRECATE
organizationId: 1, // TO_DEPRECATE
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
},
]