-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathboard-tasks.sample.js
69 lines (65 loc) · 1.85 KB
/
board-tasks.sample.js
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
tasks = [
// ---- First board : Work
{
"title" : "Work",
"tasks" : [
{ // definition of the "backlog" lane
"title" : "backlog",
"items" : [
"[projectx] Improve documentation",
]
},
{ // definition of the "To Do" lane
"title" : "To Do",
"color" : "red", // background color of the lane header
"items" : [
"[team]!2020-03-20 Prepare sprint review for all relevant members | Topics: tasks done, issues, feedback on progress and planning", // definition of a task, tagged with "team" and due to March 3rd of 2020
"Have a beer with coworkers 🍻",
"[projectx][dev] Fix bug #42 | Check interaction with feature #21"
]
},
{
"title" : "Work in progress",
"color" : "orange",
"items" : [
"[dev] Improve code of https://github.com/jctophefabre/mycraftedboard",
]
},
{
"title" : "Done",
"color" : "green",
"items" : [
"[projectx] Release version 2.2"
]
}
]
},
// ---- Second board :Home
{
"title" : "Home",
"tasks" : [
{ // definition of the "To Do" lane
"title" : "To Do",
"color" : "purple", // background color of the lane header
"items" : [
"[kids]!2025-04-05 Buy gift for Lucia's birthday",
"[kids]!2025-04-05 Prepare cake for Lucia's birthday",
]
},
{
"title" : "Doing",
"color" : "pink",
"items" : [
"[house] Repaint the garden gate",
]
},
{
"title" : "😃",
"color" : "mediumaquamarine",
"items" : [
"Go shopping",
]
}
]
}
]