forked from Team-SPREAD/Puzzle-FE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
87 lines (87 loc) ยท 2.02 KB
/
db.json
File metadata and controls
87 lines (87 loc) ยท 2.02 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"projects": [
{
"id": "proj1",
"name": "Spread A",
"teamId": "Spread",
"isFavorite": true,
"currentStep": 7
},
{
"id": "proj2",
"name": "Dopamain B",
"teamId": "Dopamain",
"isFavorite": false,
"currentStep": 4
},
{
"id": "proj3",
"name": "Personal Project 1",
"teamId": null,
"isFavorite": true,
"currentStep": 0
},
{
"id": "proj4",
"name": "RentIt C",
"teamId": "RentIt",
"isFavorite": false,
"currentStep": 3
},
{
"id": "proj5",
"name": "Personal Project 2",
"teamId": null,
"isFavorite": false,
"currentStep": 1
}
],
"teams": [
{
"id": "Spread",
"name": "Spread Team",
"members": ["user1", "user2", "user3"]
},
{
"id": "Dopamain",
"name": "Dopamain Team",
"members": ["user1", "user2"]
},
{ "id": "RentIt", "name": "RentIt Team", "members": ["user1", "user3"] }
],
"users": [
{
"_id": "user1",
"name": "๊นํํธ",
"email": "taeho.kim@example.com",
"color": "#FF5733",
"hostingRooms": ["room1"],
"joinedRooms": ["room2"],
"teams": ["Spread", "Dopamain", "RentIt"],
"projects": ["proj1", "proj2", "proj3", "proj4", "proj5"],
"avatar": "https://liveblocks.io/avatars/avatar-1.png"
},
{
"_id": "user2",
"name": "๊น๋์ฑ",
"email": "daesung.kim@example.com",
"color": "#33FF57",
"hostingRooms": ["room2"],
"joinedRooms": ["room1"],
"teams": ["Spread", "Dopamain"],
"projects": ["proj1", "proj2"],
"avatar": "https://liveblocks.io/avatars/avatar-3.png"
},
{
"_id": "user3",
"name": "๊น์ ์ฐ",
"email": "sunwoo.kim@example.com",
"color": "#FF2233",
"hostingRooms": ["room3"],
"joinedRooms": ["room1"],
"teams": ["Spread", "RentIt"],
"projects": ["proj1", "proj4"],
"avatar": "https://liveblocks.io/avatars/avatar-2.png"
}
]
}