5 | | { "id": 1, "name": "A faire", "states": ["new"], "tickets": [124, 125, 126], "wip": 3 }, |
6 | | { "id": 2, "name": "En cours", "states": ["assigned", "accepted", "reopened"], "tickets": [], "wip": 3 }, |
7 | | { "id": 3, "name": "Fait", "states": ["closed"], "tickets": [], "wip": 5 } |
8 | | ], |
| 5 | { |
| 6 | "id": 1, |
| 7 | "name": "A faire", |
| 8 | "states": [ |
| 9 | "new" |
| 10 | ], |
| 11 | "tickets": [ |
| 12 | 125, |
| 13 | 126 |
| 14 | ], |
| 15 | "wip": 3 |
| 16 | }, |
| 17 | { |
| 18 | "id": 2, |
| 19 | "name": "En cours", |
| 20 | "states": [ |
| 21 | "assigned", |
| 22 | "accepted", |
| 23 | "reopened" |
| 24 | ], |
| 25 | "tickets": [ |
| 26 | 124 |
| 27 | ], |
| 28 | "wip": 3 |
| 29 | }, |
| 30 | { |
| 31 | "id": 3, |
| 32 | "name": "Fait", |
| 33 | "states": [ |
| 34 | "closed" |
| 35 | ], |
| 36 | "tickets": [], |
| 37 | "wip": 5 |
| 38 | } |
| 39 | ], |