taskmapper-trello 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +18 -0
- data/.travis.yml +6 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +20 -0
- data/README.md +116 -0
- data/Rakefile +7 -0
- data/lib/provider/project.rb +28 -0
- data/lib/provider/ticket.rb +103 -0
- data/lib/provider/trello.rb +45 -0
- data/lib/provider/version.rb +7 -0
- data/lib/taskmapper-trello.rb +7 -0
- data/spec/credentials.rb.example +15 -0
- data/spec/fixtures/boards.json +498 -0
- data/spec/fixtures/card.json +17 -0
- data/spec/fixtures/cards.json +557 -0
- data/spec/fixtures/member.json +68 -0
- data/spec/lib/project_spec.rb +58 -0
- data/spec/lib/ticket_spec.rb +107 -0
- data/spec/lib/trello_spec.rb +42 -0
- data/spec/lib/version_spec.rb +9 -0
- data/spec/spec_helper.rb +74 -0
- data/taskmapper-trello.gemspec +24 -0
- metadata +146 -0
@@ -0,0 +1,17 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"id": "abcdef123456789123456789",
|
4
|
+
"idShort": "1",
|
5
|
+
"name": "New Ticket",
|
6
|
+
"desc": "Desc",
|
7
|
+
"closed": false,
|
8
|
+
"idList": "abcdef123456789123456789",
|
9
|
+
"idBoard": "abcdef123456789123456789",
|
10
|
+
"idMembers": [
|
11
|
+
"abcdef123456789123456789"
|
12
|
+
],
|
13
|
+
"url": "https:\/\/trello.com\/card\/board\/welcome-board\/abcdef123456789123456789\/abcdef123456789123456789",
|
14
|
+
"pos": 12,
|
15
|
+
"dateLastActivity": "2012-12-07T18:40:24.314Z"
|
16
|
+
}
|
17
|
+
]
|
@@ -0,0 +1,557 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"id": "4ea4fa0cd791269d4e29a198",
|
4
|
+
"badges": {
|
5
|
+
"votes": 1,
|
6
|
+
"viewingMemberVoted": false,
|
7
|
+
"subscribed": false,
|
8
|
+
"fogbugz": "",
|
9
|
+
"checkItems": 0,
|
10
|
+
"checkItemsChecked": 0,
|
11
|
+
"comments": 0,
|
12
|
+
"attachments": 0,
|
13
|
+
"description": true,
|
14
|
+
"due": null
|
15
|
+
},
|
16
|
+
"checkItemStates": [
|
17
|
+
|
18
|
+
],
|
19
|
+
"closed": false,
|
20
|
+
"dateLastActivity": "2013-07-05T15:32:27.173Z",
|
21
|
+
"desc": "People can vote on cards.",
|
22
|
+
"descData": null,
|
23
|
+
"due": null,
|
24
|
+
"idBoard": "4ea4fa0cd791269d4e29a176",
|
25
|
+
"idChecklists": [
|
26
|
+
|
27
|
+
],
|
28
|
+
"idList": "4ea4fa0cd791269d4e29a16f",
|
29
|
+
"idMembers": [
|
30
|
+
|
31
|
+
],
|
32
|
+
"idMembersVoted": [
|
33
|
+
"4e6a7fad05d98b02ba00845c"
|
34
|
+
],
|
35
|
+
"idShort": 2,
|
36
|
+
"idAttachmentCover": null,
|
37
|
+
"manualCoverAttachment": false,
|
38
|
+
"labels": [
|
39
|
+
|
40
|
+
],
|
41
|
+
"name": "This is a card.",
|
42
|
+
"pos": 212992,
|
43
|
+
"shortLink": "LcdKHBEs",
|
44
|
+
"shortUrl": "https:\/\/trello.com\/c\/LcdKHBEs",
|
45
|
+
"subscribed": false,
|
46
|
+
"url": "https:\/\/trello.com\/c\/LcdKHBEs\/2-this-is-a-card"
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"id": "4ea4fa0dd791269d4e29a1bd",
|
50
|
+
"badges": {
|
51
|
+
"votes": 0,
|
52
|
+
"viewingMemberVoted": false,
|
53
|
+
"subscribed": false,
|
54
|
+
"fogbugz": "",
|
55
|
+
"checkItems": 0,
|
56
|
+
"checkItemsChecked": 0,
|
57
|
+
"comments": 0,
|
58
|
+
"attachments": 0,
|
59
|
+
"description": false,
|
60
|
+
"due": null
|
61
|
+
},
|
62
|
+
"checkItemStates": [
|
63
|
+
|
64
|
+
],
|
65
|
+
"closed": false,
|
66
|
+
"dateLastActivity": "2013-07-05T15:32:27.176Z",
|
67
|
+
"desc": "",
|
68
|
+
"descData": null,
|
69
|
+
"due": null,
|
70
|
+
"idBoard": "4ea4fa0cd791269d4e29a176",
|
71
|
+
"idChecklists": [
|
72
|
+
|
73
|
+
],
|
74
|
+
"idList": "4ea4fa0cd791269d4e29a16f",
|
75
|
+
"idMembers": [
|
76
|
+
|
77
|
+
],
|
78
|
+
"idMembersVoted": [
|
79
|
+
|
80
|
+
],
|
81
|
+
"idShort": 9,
|
82
|
+
"idAttachmentCover": null,
|
83
|
+
"manualCoverAttachment": false,
|
84
|
+
"labels": [
|
85
|
+
|
86
|
+
],
|
87
|
+
"name": "Make as many lists as you need!",
|
88
|
+
"pos": 262144,
|
89
|
+
"shortLink": "E8CeJde7",
|
90
|
+
"shortUrl": "https:\/\/trello.com\/c\/E8CeJde7",
|
91
|
+
"subscribed": false,
|
92
|
+
"url": "https:\/\/trello.com\/c\/E8CeJde7\/9-make-as-many-lists-as-you-need"
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"id": "4ea4fa0cd791269d4e29a1a6",
|
96
|
+
"badges": {
|
97
|
+
"votes": 0,
|
98
|
+
"viewingMemberVoted": false,
|
99
|
+
"subscribed": false,
|
100
|
+
"fogbugz": "",
|
101
|
+
"checkItems": 0,
|
102
|
+
"checkItemsChecked": 0,
|
103
|
+
"comments": 0,
|
104
|
+
"attachments": 1,
|
105
|
+
"description": true,
|
106
|
+
"due": null
|
107
|
+
},
|
108
|
+
"checkItemStates": [
|
109
|
+
|
110
|
+
],
|
111
|
+
"closed": false,
|
112
|
+
"dateLastActivity": "2013-07-05T15:32:27.179Z",
|
113
|
+
"desc": "This is Taco, the most famous Siberian Husky in New York City.",
|
114
|
+
"descData": null,
|
115
|
+
"due": null,
|
116
|
+
"idBoard": "4ea4fa0cd791269d4e29a176",
|
117
|
+
"idChecklists": [
|
118
|
+
|
119
|
+
],
|
120
|
+
"idList": "4ea4fa0cd791269d4e29a16f",
|
121
|
+
"idMembers": [
|
122
|
+
|
123
|
+
],
|
124
|
+
"idMembersVoted": [
|
125
|
+
|
126
|
+
],
|
127
|
+
"idShort": 4,
|
128
|
+
"idAttachmentCover": null,
|
129
|
+
"manualCoverAttachment": false,
|
130
|
+
"labels": [
|
131
|
+
|
132
|
+
],
|
133
|
+
"name": "You can attach pictures and files...",
|
134
|
+
"pos": 294912,
|
135
|
+
"shortLink": "FJHA2oJC",
|
136
|
+
"shortUrl": "https:\/\/trello.com\/c\/FJHA2oJC",
|
137
|
+
"subscribed": false,
|
138
|
+
"url": "https:\/\/trello.com\/c\/FJHA2oJC\/4-you-can-attach-pictures-and-files"
|
139
|
+
},
|
140
|
+
{
|
141
|
+
"id": "4ea4fa0dd791269d4e29a1c1",
|
142
|
+
"badges": {
|
143
|
+
"votes": 0,
|
144
|
+
"viewingMemberVoted": false,
|
145
|
+
"subscribed": false,
|
146
|
+
"fogbugz": "",
|
147
|
+
"checkItems": 0,
|
148
|
+
"checkItemsChecked": 0,
|
149
|
+
"comments": 0,
|
150
|
+
"attachments": 0,
|
151
|
+
"description": false,
|
152
|
+
"due": null
|
153
|
+
},
|
154
|
+
"checkItemStates": [
|
155
|
+
|
156
|
+
],
|
157
|
+
"closed": false,
|
158
|
+
"dateLastActivity": "2013-07-05T15:32:27.177Z",
|
159
|
+
"desc": "",
|
160
|
+
"descData": null,
|
161
|
+
"due": null,
|
162
|
+
"idBoard": "4ea4fa0cd791269d4e29a176",
|
163
|
+
"idChecklists": [
|
164
|
+
|
165
|
+
],
|
166
|
+
"idList": "4ea4fa0cd791269d4e29a16f",
|
167
|
+
"idMembers": [
|
168
|
+
|
169
|
+
],
|
170
|
+
"idMembersVoted": [
|
171
|
+
|
172
|
+
],
|
173
|
+
"idShort": 10,
|
174
|
+
"idAttachmentCover": null,
|
175
|
+
"manualCoverAttachment": false,
|
176
|
+
"labels": [
|
177
|
+
|
178
|
+
],
|
179
|
+
"name": "Try dragging cards anywhere.",
|
180
|
+
"pos": 327680,
|
181
|
+
"shortLink": "TXPLzLn8",
|
182
|
+
"shortUrl": "https:\/\/trello.com\/c\/TXPLzLn8",
|
183
|
+
"subscribed": false,
|
184
|
+
"url": "https:\/\/trello.com\/c\/TXPLzLn8\/10-try-dragging-cards-anywhere"
|
185
|
+
},
|
186
|
+
{
|
187
|
+
"id": "4ea4fa0cd791269d4e29a19f",
|
188
|
+
"badges": {
|
189
|
+
"votes": 0,
|
190
|
+
"viewingMemberVoted": false,
|
191
|
+
"subscribed": false,
|
192
|
+
"fogbugz": "",
|
193
|
+
"checkItems": 0,
|
194
|
+
"checkItemsChecked": 0,
|
195
|
+
"comments": 1,
|
196
|
+
"attachments": 0,
|
197
|
+
"description": true,
|
198
|
+
"due": null
|
199
|
+
},
|
200
|
+
"checkItemStates": [
|
201
|
+
|
202
|
+
],
|
203
|
+
"closed": false,
|
204
|
+
"dateLastActivity": "2013-07-05T15:32:27.174Z",
|
205
|
+
"desc": "You can put a detailed description here...",
|
206
|
+
"descData": null,
|
207
|
+
"due": null,
|
208
|
+
"idBoard": "4ea4fa0cd791269d4e29a176",
|
209
|
+
"idChecklists": [
|
210
|
+
|
211
|
+
],
|
212
|
+
"idList": "4ea4fa0cd791269d4e29a16f",
|
213
|
+
"idMembers": [
|
214
|
+
|
215
|
+
],
|
216
|
+
"idMembersVoted": [
|
217
|
+
|
218
|
+
],
|
219
|
+
"idShort": 3,
|
220
|
+
"idAttachmentCover": null,
|
221
|
+
"manualCoverAttachment": false,
|
222
|
+
"labels": [
|
223
|
+
|
224
|
+
],
|
225
|
+
"name": "Click on a card to see what's behind it.",
|
226
|
+
"pos": 344064,
|
227
|
+
"shortLink": "rV8ip619",
|
228
|
+
"shortUrl": "https:\/\/trello.com\/c\/rV8ip619",
|
229
|
+
"subscribed": false,
|
230
|
+
"url": "https:\/\/trello.com\/c\/rV8ip619\/3-click-on-a-card-to-see-what-s-behind-it"
|
231
|
+
},
|
232
|
+
{
|
233
|
+
"id": "4ea4fa0cd791269d4e29a193",
|
234
|
+
"badges": {
|
235
|
+
"votes": 0,
|
236
|
+
"viewingMemberVoted": false,
|
237
|
+
"subscribed": false,
|
238
|
+
"fogbugz": "",
|
239
|
+
"checkItems": 0,
|
240
|
+
"checkItemsChecked": 0,
|
241
|
+
"comments": 0,
|
242
|
+
"attachments": 0,
|
243
|
+
"description": false,
|
244
|
+
"due": null
|
245
|
+
},
|
246
|
+
"checkItemStates": [
|
247
|
+
|
248
|
+
],
|
249
|
+
"closed": false,
|
250
|
+
"dateLastActivity": "2013-07-05T15:32:27.172Z",
|
251
|
+
"desc": "",
|
252
|
+
"descData": null,
|
253
|
+
"due": null,
|
254
|
+
"idBoard": "4ea4fa0cd791269d4e29a176",
|
255
|
+
"idChecklists": [
|
256
|
+
|
257
|
+
],
|
258
|
+
"idList": "4ea4fa0cd791269d4e29a16f",
|
259
|
+
"idMembers": [
|
260
|
+
|
261
|
+
],
|
262
|
+
"idMembersVoted": [
|
263
|
+
|
264
|
+
],
|
265
|
+
"idShort": 1,
|
266
|
+
"idAttachmentCover": null,
|
267
|
+
"manualCoverAttachment": false,
|
268
|
+
"labels": [
|
269
|
+
|
270
|
+
],
|
271
|
+
"name": "Welcome to Trello!",
|
272
|
+
"pos": 360448,
|
273
|
+
"shortLink": "nUiArxze",
|
274
|
+
"shortUrl": "https:\/\/trello.com\/c\/nUiArxze",
|
275
|
+
"subscribed": false,
|
276
|
+
"url": "https:\/\/trello.com\/c\/nUiArxze\/1-welcome-to-trello"
|
277
|
+
},
|
278
|
+
{
|
279
|
+
"id": "4ea4fa0dd791269d4e29a1c6",
|
280
|
+
"badges": {
|
281
|
+
"votes": 0,
|
282
|
+
"viewingMemberVoted": false,
|
283
|
+
"subscribed": false,
|
284
|
+
"fogbugz": "",
|
285
|
+
"checkItems": 0,
|
286
|
+
"checkItemsChecked": 0,
|
287
|
+
"comments": 0,
|
288
|
+
"attachments": 0,
|
289
|
+
"description": true,
|
290
|
+
"due": null
|
291
|
+
},
|
292
|
+
"checkItemStates": [
|
293
|
+
|
294
|
+
],
|
295
|
+
"closed": false,
|
296
|
+
"dateLastActivity": "2013-07-05T15:32:27.187Z",
|
297
|
+
"desc": "From the *front* of the card, archive it using the menu in the top right corner.\n\nFrom the *back* of the card, archive it using the **Archive** button at the bottom right.",
|
298
|
+
"descData": null,
|
299
|
+
"due": null,
|
300
|
+
"idBoard": "4ea4fa0cd791269d4e29a176",
|
301
|
+
"idChecklists": [
|
302
|
+
|
303
|
+
],
|
304
|
+
"idList": "4ea4fa0cd791269d4e29a16f",
|
305
|
+
"idMembers": [
|
306
|
+
|
307
|
+
],
|
308
|
+
"idMembersVoted": [
|
309
|
+
|
310
|
+
],
|
311
|
+
"idShort": 11,
|
312
|
+
"idAttachmentCover": null,
|
313
|
+
"manualCoverAttachment": false,
|
314
|
+
"labels": [
|
315
|
+
|
316
|
+
],
|
317
|
+
"name": "Finished with a card? Archive it.",
|
318
|
+
"pos": 393216,
|
319
|
+
"shortLink": "dFhozSZn",
|
320
|
+
"shortUrl": "https:\/\/trello.com\/c\/dFhozSZn",
|
321
|
+
"subscribed": false,
|
322
|
+
"url": "https:\/\/trello.com\/c\/dFhozSZn\/11-finished-with-a-card-archive-it"
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"id": "4ea4fa0dd791269d4e29a1cc",
|
326
|
+
"badges": {
|
327
|
+
"votes": 0,
|
328
|
+
"viewingMemberVoted": false,
|
329
|
+
"subscribed": false,
|
330
|
+
"fogbugz": "",
|
331
|
+
"checkItems": 0,
|
332
|
+
"checkItemsChecked": 0,
|
333
|
+
"comments": 0,
|
334
|
+
"attachments": 0,
|
335
|
+
"description": true,
|
336
|
+
"due": null
|
337
|
+
},
|
338
|
+
"checkItemStates": [
|
339
|
+
|
340
|
+
],
|
341
|
+
"closed": false,
|
342
|
+
"dateLastActivity": "2013-07-05T15:32:27.188Z",
|
343
|
+
"desc": "To make a new board, click on the **Boards** menu in the top right hand corner.",
|
344
|
+
"descData": null,
|
345
|
+
"due": null,
|
346
|
+
"idBoard": "4ea4fa0cd791269d4e29a176",
|
347
|
+
"idChecklists": [
|
348
|
+
|
349
|
+
],
|
350
|
+
"idList": "4ea4fa0cd791269d4e29a170",
|
351
|
+
"idMembers": [
|
352
|
+
|
353
|
+
],
|
354
|
+
"idMembersVoted": [
|
355
|
+
|
356
|
+
],
|
357
|
+
"idShort": 12,
|
358
|
+
"idAttachmentCover": null,
|
359
|
+
"manualCoverAttachment": false,
|
360
|
+
"labels": [
|
361
|
+
|
362
|
+
],
|
363
|
+
"name": "Use as many boards as you want. We'll make more!",
|
364
|
+
"pos": 16384,
|
365
|
+
"shortLink": "Nksxmd7C",
|
366
|
+
"shortUrl": "https:\/\/trello.com\/c\/Nksxmd7C",
|
367
|
+
"subscribed": false,
|
368
|
+
"url": "https:\/\/trello.com\/c\/Nksxmd7C\/12-use-as-many-boards-as-you-want-we-ll-make-more"
|
369
|
+
},
|
370
|
+
{
|
371
|
+
"id": "4ea4fa0cd791269d4e29a1aa",
|
372
|
+
"badges": {
|
373
|
+
"votes": 0,
|
374
|
+
"viewingMemberVoted": false,
|
375
|
+
"subscribed": false,
|
376
|
+
"fogbugz": "",
|
377
|
+
"checkItems": 0,
|
378
|
+
"checkItemsChecked": 0,
|
379
|
+
"comments": 1,
|
380
|
+
"attachments": 0,
|
381
|
+
"description": false,
|
382
|
+
"due": null
|
383
|
+
},
|
384
|
+
"checkItemStates": [
|
385
|
+
|
386
|
+
],
|
387
|
+
"closed": false,
|
388
|
+
"dateLastActivity": "2013-07-05T15:32:27.174Z",
|
389
|
+
"desc": "",
|
390
|
+
"descData": null,
|
391
|
+
"due": null,
|
392
|
+
"idBoard": "4ea4fa0cd791269d4e29a176",
|
393
|
+
"idChecklists": [
|
394
|
+
|
395
|
+
],
|
396
|
+
"idList": "4ea4fa0cd791269d4e29a170",
|
397
|
+
"idMembers": [
|
398
|
+
|
399
|
+
],
|
400
|
+
"idMembersVoted": [
|
401
|
+
|
402
|
+
],
|
403
|
+
"idShort": 5,
|
404
|
+
"idAttachmentCover": null,
|
405
|
+
"manualCoverAttachment": false,
|
406
|
+
"labels": [
|
407
|
+
|
408
|
+
],
|
409
|
+
"name": "... any kind of hyperlink ...",
|
410
|
+
"pos": 327680,
|
411
|
+
"shortLink": "haYjU4vk",
|
412
|
+
"shortUrl": "https:\/\/trello.com\/c\/haYjU4vk",
|
413
|
+
"subscribed": false,
|
414
|
+
"url": "https:\/\/trello.com\/c\/haYjU4vk\/5-any-kind-of-hyperlink"
|
415
|
+
},
|
416
|
+
{
|
417
|
+
"id": "4ea4fa0dd791269d4e29a1b6",
|
418
|
+
"badges": {
|
419
|
+
"votes": 0,
|
420
|
+
"viewingMemberVoted": false,
|
421
|
+
"subscribed": false,
|
422
|
+
"fogbugz": "",
|
423
|
+
"checkItems": 0,
|
424
|
+
"checkItemsChecked": 0,
|
425
|
+
"comments": 0,
|
426
|
+
"attachments": 0,
|
427
|
+
"description": false,
|
428
|
+
"due": null
|
429
|
+
},
|
430
|
+
"checkItemStates": [
|
431
|
+
|
432
|
+
],
|
433
|
+
"closed": false,
|
434
|
+
"dateLastActivity": "2013-07-05T15:32:27.176Z",
|
435
|
+
"desc": "",
|
436
|
+
"descData": null,
|
437
|
+
"due": null,
|
438
|
+
"idBoard": "4ea4fa0cd791269d4e29a176",
|
439
|
+
"idChecklists": [
|
440
|
+
"4f0f1c1c34bd7f2c5010201b"
|
441
|
+
],
|
442
|
+
"idList": "4ea4fa0cd791269d4e29a16e",
|
443
|
+
"idMembers": [
|
444
|
+
|
445
|
+
],
|
446
|
+
"idMembersVoted": [
|
447
|
+
|
448
|
+
],
|
449
|
+
"idShort": 8,
|
450
|
+
"idAttachmentCover": null,
|
451
|
+
"manualCoverAttachment": false,
|
452
|
+
"labels": [
|
453
|
+
|
454
|
+
],
|
455
|
+
"name": "Drag people onto a card to indicate that they're responsible for it.",
|
456
|
+
"pos": 360448,
|
457
|
+
"shortLink": "4XmooAHe",
|
458
|
+
"shortUrl": "https:\/\/trello.com\/c\/4XmooAHe",
|
459
|
+
"subscribed": false,
|
460
|
+
"url": "https:\/\/trello.com\/c\/4XmooAHe\/8-drag-people-onto-a-card-to-indicate-that-they-re-responsible-for-it"
|
461
|
+
},
|
462
|
+
{
|
463
|
+
"id": "4ea4fa0cd791269d4e29a1af",
|
464
|
+
"badges": {
|
465
|
+
"votes": 0,
|
466
|
+
"viewingMemberVoted": false,
|
467
|
+
"subscribed": false,
|
468
|
+
"fogbugz": "",
|
469
|
+
"checkItems": 3,
|
470
|
+
"checkItemsChecked": 1,
|
471
|
+
"comments": 0,
|
472
|
+
"attachments": 0,
|
473
|
+
"description": false,
|
474
|
+
"due": null
|
475
|
+
},
|
476
|
+
"checkItemStates": [
|
477
|
+
{
|
478
|
+
"idCheckItem": "4ea4fa0cd791269d4e29a171",
|
479
|
+
"state": "complete"
|
480
|
+
}
|
481
|
+
],
|
482
|
+
"closed": false,
|
483
|
+
"dateLastActivity": "2013-07-05T15:32:27.175Z",
|
484
|
+
"desc": "",
|
485
|
+
"descData": null,
|
486
|
+
"due": null,
|
487
|
+
"idBoard": "4ea4fa0cd791269d4e29a176",
|
488
|
+
"idChecklists": [
|
489
|
+
"4ea4fa0cd791269d4e29a174"
|
490
|
+
],
|
491
|
+
"idList": "4ea4fa0cd791269d4e29a16e",
|
492
|
+
"idMembers": [
|
493
|
+
|
494
|
+
],
|
495
|
+
"idMembersVoted": [
|
496
|
+
|
497
|
+
],
|
498
|
+
"idShort": 6,
|
499
|
+
"idAttachmentCover": null,
|
500
|
+
"manualCoverAttachment": false,
|
501
|
+
"labels": [
|
502
|
+
|
503
|
+
],
|
504
|
+
"name": "... or checklists.",
|
505
|
+
"pos": 393216,
|
506
|
+
"shortLink": "oym1FMX0",
|
507
|
+
"shortUrl": "https:\/\/trello.com\/c\/oym1FMX0",
|
508
|
+
"subscribed": false,
|
509
|
+
"url": "https:\/\/trello.com\/c\/oym1FMX0\/6-or-checklists"
|
510
|
+
},
|
511
|
+
{
|
512
|
+
"id": "4ea4fa0dd791269d4e29a1b3",
|
513
|
+
"badges": {
|
514
|
+
"votes": 0,
|
515
|
+
"viewingMemberVoted": false,
|
516
|
+
"subscribed": false,
|
517
|
+
"fogbugz": "",
|
518
|
+
"checkItems": 0,
|
519
|
+
"checkItemsChecked": 0,
|
520
|
+
"comments": 0,
|
521
|
+
"attachments": 0,
|
522
|
+
"description": false,
|
523
|
+
"due": null
|
524
|
+
},
|
525
|
+
"checkItemStates": [
|
526
|
+
|
527
|
+
],
|
528
|
+
"closed": true,
|
529
|
+
"dateLastActivity": "2013-07-05T15:32:27.175Z",
|
530
|
+
"desc": "",
|
531
|
+
"descData": null,
|
532
|
+
"due": null,
|
533
|
+
"idBoard": "4ea4fa0cd791269d4e29a176",
|
534
|
+
"idChecklists": [
|
535
|
+
|
536
|
+
],
|
537
|
+
"idList": "4ea4fa0cd791269d4e29a16e",
|
538
|
+
"idMembers": [
|
539
|
+
|
540
|
+
],
|
541
|
+
"idMembersVoted": [
|
542
|
+
|
543
|
+
],
|
544
|
+
"idShort": 7,
|
545
|
+
"idAttachmentCover": null,
|
546
|
+
"manualCoverAttachment": false,
|
547
|
+
"labels": [
|
548
|
+
|
549
|
+
],
|
550
|
+
"name": "Invite your team to this board using the Add Members button",
|
551
|
+
"pos": 458752,
|
552
|
+
"shortLink": "Y6hU4Juk",
|
553
|
+
"shortUrl": "https:\/\/trello.com\/c\/Y6hU4Juk",
|
554
|
+
"subscribed": false,
|
555
|
+
"url": "https:\/\/trello.com\/c\/Y6hU4Juk\/7-invite-your-team-to-this-board-using-the-add-members-button"
|
556
|
+
}
|
557
|
+
]
|