forked from briancappello/flask-react-spa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixtures.json
44 lines (44 loc) · 801 Bytes
/
fixtures.json
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
[
{ "model": "User", "items": [
{
"id": 1,
"email": "[email protected]",
"username": "admin",
"first_name": "The",
"last_name": "Admin",
"password": "password",
"active": true,
"confirmed_at": "2017-08-30 00:00:00 UTC"
},
{
"id": 2,
"email": "[email protected]",
"username": "user",
"first_name": "The",
"last_name": "User",
"password": "password",
"active": true,
"confirmed_at": "2017-08-30 00:00:00 UTC"
}
]},
{ "model": "Role", "items": [
{
"id": 1,
"name": "ROLE_ADMIN"
},
{
"id": 2,
"name": "ROLE_USER"
}
]},
{ "model": "UserRole", "items": [
{
"user_id": 1,
"role_id": 1
},
{
"user_id": 2,
"role_id": 2
}
]}
]