forked from CSC510-Group-25/feature-hunt
-
Notifications
You must be signed in to change notification settings - Fork 3
/
db.json
104 lines (104 loc) · 2.48 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"users": [
{
"id": 1,
"name": "Raj Shah",
"email": "rshah28@ncsu.edu",
"username": "shahrk"
},
{
"id": 2,
"name": "Nirav Patel",
"email": "nkpatel8@ncsu.edu",
"username": "frankenstein"
},
{
"id": 3,
"name": "Parth Kanakiya",
"email": "pkanki@ncsu.edu",
"username": "pecan"
}
],
"products": [
{
"id": 1,
"name": "feature-hunt",
"description": "Feature Hunt is a platform where users can share, vote, and discuss feature requests and product owners can organize (categorize/prioritize) these requests. Instead of each product having it's own feature request page/portal we create a central hub where any product can interact with its users.",
"votes": 2,
"features": [
{
"id": 1,
"text": "Create dashboard for product owners",
"votes": 1,
"timestamp": 1530815581293,
"tags": [
"enhancement"
]
},
{
"id": 2,
"text": "Create product page",
"votes": 1,
"timestamp": 1530814681293,
"tags": [
"enhancement"
]
},
{
"id": 3,
"text": "Make likes consistent",
"votes": 3,
"timestamp": 1530814981293,
"tags": [
"bug fix"
]
}
],
"tags": [
"productivity",
"web app"
]
},
{
"id": 2,
"name": "disentry",
"description": "Disentry is a discord bot that can help you organize & easily search messages in any discord server.",
"votes": 1,
"features": [
{
"id": 1,
"text": "Enable scheduling/reminders",
"votes": 1,
"timestamp": 1530815581293,
"tags": [
"enhancement"
]
},
{
"id": 2,
"text": "Enable playing music",
"votes": 2,
"timestamp": 1530814681293,
"tags": [
"enhancement"
]
},
{
"id": 3,
"text": "Add feature for moderating chats",
"votes": 0,
"timestamp": 1530814981293,
"tags": [
"enhancement"
]
}
],
"tags": [
"bot",
"fun"
]
}
],
"productUpvotes": ["1_1", "3_1", "2_2"],
"featureUpvotes": ["1_1_3", "2_1_3", "3_1_3", "1_1_2", "1_1_1", "1_2_2", "1_2_1", "3_2_2"]
}