-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit-data.json
52 lines (52 loc) · 1.09 KB
/
init-data.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
{
"project": {
"name": "MASB",
"body": "Project board de la asignatura de MASB",
"columns": {
"toDo": {},
"inProgress": {},
"done": {}
}
},
"milestones": [
{
"title": "Sprint 2",
"due_on": "2020-02-20T00:00:00+01:00"
},
{
"title": "Sprint 1",
"due_on": "2020-02-01T00:00:00+01:00"
}
],
"labels": [
{
"name": "lbl1",
"color": "fcba03",
"description": "desc1"
},
{
"name": "lbl2",
"color": "05e8e4",
"description": "desc1"
}
],
"issues": [
{
"card": {},
"title": "ttl1",
"body": "bdy1",
"milestone": "Sprint 1",
"labels": [
"lbl1",
"lbl2"
]
},
{
"card": {},
"title": "ttl2",
"body": "bdy2",
"milestone": "Sprint 2",
"labels": ["lbl2"]
}
]
}