-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathdb.json
50 lines (50 loc) · 1.11 KB
/
db.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
45
46
47
48
49
50
{
"users": [
{
"id": "1",
"username": "miniasp",
"password": "123456",
"email": "demo@miniasp.com",
"bio": "hi",
"image": null
}
],
"articles": [
{
"id": "3",
"title": "Title (3)",
"description": "This is description (23)",
"body": "This is article body (3)",
"tagList": [
"css"
],
"createdAt": "2019-04-25T12:45:37.095Z",
"updatedAt": "2019-04-25T12:45:37.095Z",
"author": "miniasp"
},
{
"id": "2",
"title": "Title (2)",
"description": "This is description (2)",
"body": "This is article body (2)",
"tagList": [
"html"
],
"createdAt": "2019-04-25T12:45:37.095Z",
"updatedAt": "2019-04-25T12:45:37.095Z",
"author": "miniasp"
},
{
"id": "1",
"title": "Title (1)",
"description": "This is description (1)",
"body": "This is article body (1)",
"tagList": [
"angular"
],
"createdAt": "2019-04-25T12:45:37.095Z",
"updatedAt": "2019-04-25T12:45:37.095Z",
"author": "miniasp"
}
]
}