-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathissues.json
More file actions
2965 lines (2955 loc) · 165 KB
/
issues.json
File metadata and controls
2965 lines (2955 loc) · 165 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1073",
"repository_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev",
"labels_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1073/labels{/name}",
"comments_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1073/comments",
"events_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1073/events",
"html_url": "https://github.ibm.com/MSC-Cloud/dev/issues/1073",
"id": 10300293,
"node_id": "MDU6SXNzdWUxMDMwMDI5Mw==",
"number": 1073,
"title": "Hide Cloud and Watson specific options in Page Builder",
"user": {
"login": "Jerad-Bitner",
"id": 166615,
"node_id": "MDQ6VXNlcjE2NjYxNQ==",
"avatar_url": "https://avatars.github.ibm.com/u/166615?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Jerad-Bitner",
"html_url": "https://github.ibm.com/Jerad-Bitner",
"followers_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/followers",
"following_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/repos",
"events_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 2473369,
"node_id": "MDU6TGFiZWwyNDczMzY5",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Type:%20New%20Feature",
"name": "Type: New Feature",
"color": "e9f2e8",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2019-10-01T16:36:59Z",
"updated_at": "2019-10-01T16:36:59Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "## Problem/Description\nThe core team would like to limit the amount of options exposed on the Page Builder content type form.\n\n## Proposed Solution\nUnless `/cloud` or `/watson` is selected as the \n Page Properties > Web Segment > Level 1 \nThe following fields should be hidden\n\n\n### Lead Spaces\n\nLEAD SPACE > Create lead space\n\n\n\n- Module 1E\n- Module 2E\n- Module 2F (Old) \n- Module 3E\n- Module 4E\n- Module 5E\n- Module 5E (Light)\n- Module 6E\n- Cloud Leadspace\n\n\n### Bands\n\nBANDS > Create new content > Choose layout\n\n\n\n- Cloud Blog Listing\n- Cloud Blog Subscription\n- Cloud Learn topic listing\n- Cloud Promo Group\n- Cloud Spacer\n- Promo Group\n- Promo Group: Watson\n- Watson Health Spacer\n- Watson Spacer\n\n## Additional Information\n- we have a method for hiding fields already that was created as part of #347 and #436\n- I would imagine this would be the methodology that we would use to accomplish this\n- initial spike: #1011\n\n## Resolution\n### Acceptance Criteria (required)\n- [ ] Lead space options described above only appear when the cloud or watson segment are chosen in the page properties > web segment > level 1\n- [ ] Band options described above only appear when the cloud or watson segment are chosen in the page properties > web segment > level 1\n\n### Testing Instructions\n<!-- Add any specific instructions for testing the acceptance criteria. -->\n1. Open a new page builder form\n2. Ensure that the lead space options outlined above only appear when cloud or watson segments are chosen in the page properties section\n3. Ensure that the band options outlined above only appear when cloud or watson segments are chosen in the page properties section\n"
},
{
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1072",
"repository_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev",
"labels_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1072/labels{/name}",
"comments_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1072/comments",
"events_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1072/events",
"html_url": "https://github.ibm.com/MSC-Cloud/dev/issues/1072",
"id": 10299148,
"node_id": "MDU6SXNzdWUxMDI5OTE0OA==",
"number": 1072,
"title": "Cloud and Watson theme footer should point to updated version of mega_menu_nav.js",
"user": {
"login": "Jerad-Bitner",
"id": 166615,
"node_id": "MDQ6VXNlcjE2NjYxNQ==",
"avatar_url": "https://avatars.github.ibm.com/u/166615?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Jerad-Bitner",
"html_url": "https://github.ibm.com/Jerad-Bitner",
"followers_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/followers",
"following_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/repos",
"events_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 4500836,
"node_id": "MDU6TGFiZWw0NTAwODM2",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/P5:%20%F0%9F%92%A4%20Trivial",
"name": "P5: � Trivial",
"color": "ff99ff",
"default": false
},
{
"id": 4357891,
"node_id": "MDU6TGFiZWw0MzU3ODkx",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Technical%20Debt",
"name": "Technical Debt",
"color": "eeeeee",
"default": false
},
{
"id": 2473367,
"node_id": "MDU6TGFiZWwyNDczMzY3",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Type:%20Bug",
"name": "Type: Bug",
"color": "f2e8e8",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": {
"login": "rrastog",
"id": 20790,
"node_id": "MDQ6VXNlcjIwNzkw",
"avatar_url": "https://avatars.github.ibm.com/u/20790?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/rrastog",
"html_url": "https://github.ibm.com/rrastog",
"followers_url": "https://github.ibm.com/api/v3/users/rrastog/followers",
"following_url": "https://github.ibm.com/api/v3/users/rrastog/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/rrastog/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/rrastog/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/rrastog/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/rrastog/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/rrastog/repos",
"events_url": "https://github.ibm.com/api/v3/users/rrastog/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/rrastog/received_events",
"type": "User",
"site_admin": false
},
"assignees": [
{
"login": "rrastog",
"id": 20790,
"node_id": "MDQ6VXNlcjIwNzkw",
"avatar_url": "https://avatars.github.ibm.com/u/20790?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/rrastog",
"html_url": "https://github.ibm.com/rrastog",
"followers_url": "https://github.ibm.com/api/v3/users/rrastog/followers",
"following_url": "https://github.ibm.com/api/v3/users/rrastog/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/rrastog/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/rrastog/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/rrastog/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/rrastog/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/rrastog/repos",
"events_url": "https://github.ibm.com/api/v3/users/rrastog/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/rrastog/received_events",
"type": "User",
"site_admin": false
}
],
"milestone": null,
"comments": 1,
"created_at": "2019-10-01T15:26:54Z",
"updated_at": "2019-10-01T17:50:28Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "## Describe the Bug\n'Learn' > 'Customer' link in the Cloud footer is still linking to 'https://www.ibm.com/cloud-computing/bluemix/data-centers' instead of 'https://www.ibm.com/cloud/case-studies' on PROD. \n\nIt turns out the change was made in version 4 of mega menu js file (https://1.cms.s81c.com/themes/custom/ibm_cloud/js/mega_menu_nav.v4.js?v=4) (see https://github.ibm.com/MSC-Cloud/dev/issues/1043) however the PROD is still pointing to version 3 (https://1.cms.s81c.com/themes/custom/ibm_cloud/js/mega_menu_nav.v4.js?v=3). Hence the reason why the production team is not seeing the update. \n\n## To Reproduce\nSteps to reproduce the behavior:\n1. Go to https://www.ibm.com/cloud\n2. INSPECT the link in the footer for Learn > Customer\n3. Notice that the link is incorrect.\n\n## Expected behavior\nThe link source should be updated so that a redirect is not needed.\n\n### Considerations\n- original change to nav.js file here: https://github.ibm.com/MSC-Cloud/dev/issues/1043\n\n## Resolution\n### Acceptance Criteria (required)\n- [ ] When inspecting the footer links for Learn > Customer, the href should be `https://www.ibm.com/cloud/case-studies`\n\n\n"
},
{
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1071",
"repository_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev",
"labels_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1071/labels{/name}",
"comments_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1071/comments",
"events_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1071/events",
"html_url": "https://github.ibm.com/MSC-Cloud/dev/issues/1071",
"id": 10265322,
"node_id": "MDU6SXNzdWUxMDI2NTMyMg==",
"number": 1071,
"title": "Read Time Indicator not working",
"user": {
"login": "Jerad-Bitner",
"id": 166615,
"node_id": "MDQ6VXNlcjE2NjYxNQ==",
"avatar_url": "https://avatars.github.ibm.com/u/166615?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Jerad-Bitner",
"html_url": "https://github.ibm.com/Jerad-Bitner",
"followers_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/followers",
"following_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/repos",
"events_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Jerad-Bitner/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 2796901,
"node_id": "MDU6TGFiZWwyNzk2OTAx",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Hold:%20External%20Team",
"name": "Hold: External Team",
"color": "210b77",
"default": false
},
{
"id": 2473367,
"node_id": "MDU6TGFiZWwyNDczMzY3",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Type:%20Bug",
"name": "Type: Bug",
"color": "f2e8e8",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": {
"login": "Hunter-Macdermut",
"id": 167297,
"node_id": "MDQ6VXNlcjE2NzI5Nw==",
"avatar_url": "https://avatars.github.ibm.com/u/167297?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut",
"html_url": "https://github.ibm.com/Hunter-Macdermut",
"followers_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/followers",
"following_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/repos",
"events_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/received_events",
"type": "User",
"site_admin": false
},
"assignees": [
{
"login": "Hunter-Macdermut",
"id": 167297,
"node_id": "MDQ6VXNlcjE2NzI5Nw==",
"avatar_url": "https://avatars.github.ibm.com/u/167297?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut",
"html_url": "https://github.ibm.com/Hunter-Macdermut",
"followers_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/followers",
"following_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/repos",
"events_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Hunter-Macdermut/received_events",
"type": "User",
"site_admin": false
}
],
"milestone": null,
"comments": 3,
"created_at": "2019-09-27T16:15:20Z",
"updated_at": "2019-10-01T15:54:11Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "## Describe the Bug\nRead time indicator value reverts back to the original value \n\n## To Reproduce\nSteps to reproduce the behavior:\n1. Edit an article\n2. Update the read time\n3. Save the node\n4. Edit the article again\n5. The read time value reverts back to the original value\n\n## Expected behavior\nRead time field should keep the updated value on save and render it on the frontend. \n\n## Screenshots\n\n\n## Desktop\n - OS: \n - Browser:\n - Version:\n\n## Mobile\n - Device:\n - OS:\n - Browser:\n - Version:\n\n### Considerations\nHunter and Frank originally implemented this work.\n- PR: https://github.ibm.com/MSC-Cloud/ibm_com_drupal/pull/514\n\n\n## Resolution\n### Acceptance Criteria (required)\n- [ ] Criterion 1\n\n### Build/Deployment Steps\n<!-- List any steps that need to be performed manually to complete the work for this ticket. -->\n1. Step 1\n\n### Testing Instructions\n<!-- Add any specific instructions for testing the acceptance criteria. -->\n1. Step 1\n"
},
{
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1070",
"repository_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev",
"labels_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1070/labels{/name}",
"comments_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1070/comments",
"events_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1070/events",
"html_url": "https://github.ibm.com/MSC-Cloud/dev/issues/1070",
"id": 10260794,
"node_id": "MDU6SXNzdWUxMDI2MDc5NA==",
"number": 1070,
"title": "Allow default content import from UI",
"user": {
"login": "Zequi-Vazquez",
"id": 167825,
"node_id": "MDQ6VXNlcjE2NzgyNQ==",
"avatar_url": "https://avatars.github.ibm.com/u/167825?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Zequi-Vazquez",
"html_url": "https://github.ibm.com/Zequi-Vazquez",
"followers_url": "https://github.ibm.com/api/v3/users/Zequi-Vazquez/followers",
"following_url": "https://github.ibm.com/api/v3/users/Zequi-Vazquez/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Zequi-Vazquez/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Zequi-Vazquez/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Zequi-Vazquez/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Zequi-Vazquez/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Zequi-Vazquez/repos",
"events_url": "https://github.ibm.com/api/v3/users/Zequi-Vazquez/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Zequi-Vazquez/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 5348638,
"node_id": "MDU6TGFiZWw1MzQ4NjM4",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Arch%20Council",
"name": "Arch Council",
"color": "f7eefd",
"default": false
},
{
"id": 4020169,
"node_id": "MDU6TGFiZWw0MDIwMTY5",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Dev:%20BE",
"name": "Dev: BE",
"color": "516df9",
"default": false
},
{
"id": 4352509,
"node_id": "MDU6TGFiZWw0MzUyNTA5",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/P3:%20%E2%9A%A0%EF%B8%8F%20%20Important",
"name": "P3: ⚠️ Important",
"color": "4fc173",
"default": false
},
{
"id": 2473369,
"node_id": "MDU6TGFiZWwyNDczMzY5",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Type:%20New%20Feature",
"name": "Type: New Feature",
"color": "e9f2e8",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 2,
"created_at": "2019-09-27T10:33:25Z",
"updated_at": "2019-09-27T18:08:01Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "When testing #957 on ODE, we have realized the default content will be deleted when a database downsync from production happens, and we have no other way to force a re-import of the default content.\n\nThe goal of this ticket is to create a form on the UI which allows the user to re-import the content from a specific sprint when it's not present on the environment."
},
{
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1069",
"repository_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev",
"labels_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1069/labels{/name}",
"comments_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1069/comments",
"events_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1069/events",
"html_url": "https://github.ibm.com/MSC-Cloud/dev/issues/1069",
"id": 10253042,
"node_id": "MDU6SXNzdWUxMDI1MzA0Mg==",
"number": 1069,
"title": "Investigate Translation of Taxonomy Terms",
"user": {
"login": "Chris-Albrecht",
"id": 204916,
"node_id": "MDQ6VXNlcjIwNDkxNg==",
"avatar_url": "https://avatars.github.ibm.com/u/204916?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Chris-Albrecht",
"html_url": "https://github.ibm.com/Chris-Albrecht",
"followers_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/followers",
"following_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/repos",
"events_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 5348638,
"node_id": "MDU6TGFiZWw1MzQ4NjM4",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Arch%20Council",
"name": "Arch Council",
"color": "f7eefd",
"default": false
},
{
"id": 5276101,
"node_id": "MDU6TGFiZWw1Mjc2MTAx",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/P2:%20%F0%9F%9A%A7%20Severe",
"name": "P2: � Severe",
"color": "ffaa00",
"default": false
},
{
"id": 4284499,
"node_id": "MDU6TGFiZWw0Mjg0NDk5",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Type:%20Spike",
"name": "Type: Spike",
"color": "f0f2e8",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": {
"login": "Chris-Albrecht",
"id": 204916,
"node_id": "MDQ6VXNlcjIwNDkxNg==",
"avatar_url": "https://avatars.github.ibm.com/u/204916?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Chris-Albrecht",
"html_url": "https://github.ibm.com/Chris-Albrecht",
"followers_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/followers",
"following_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/repos",
"events_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/received_events",
"type": "User",
"site_admin": false
},
"assignees": [
{
"login": "Chris-Albrecht",
"id": 204916,
"node_id": "MDQ6VXNlcjIwNDkxNg==",
"avatar_url": "https://avatars.github.ibm.com/u/204916?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Chris-Albrecht",
"html_url": "https://github.ibm.com/Chris-Albrecht",
"followers_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/followers",
"following_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/repos",
"events_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/received_events",
"type": "User",
"site_admin": false
}
],
"milestone": null,
"comments": 1,
"created_at": "2019-09-26T19:00:16Z",
"updated_at": "2019-09-30T22:51:58Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "## Requestors/Champions\n- Learn Hub Team\n\n## Problem/Motivation\nWe render taxonomy term fields so we need the ability to translate them.\n\n## Considerations\n- Does this already exist?\n- If not what are our options and who do we ask?\n\n## Constraints\n- \n\n## Resources (discussions, documents, etc)\n- https://www.ibm.com/fr-fr/products/category/technology\n\n## Additional Information\n\n"
},
{
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1068",
"repository_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev",
"labels_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1068/labels{/name}",
"comments_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1068/comments",
"events_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1068/events",
"html_url": "https://github.ibm.com/MSC-Cloud/dev/issues/1068",
"id": 10239274,
"node_id": "MDU6SXNzdWUxMDIzOTI3NA==",
"number": 1068,
"title": "Module 7F: Use Video Placeholder Image field instead of placeholder image pulled from YT",
"user": {
"login": "Chris-Albrecht",
"id": 204916,
"node_id": "MDQ6VXNlcjIwNDkxNg==",
"avatar_url": "https://avatars.github.ibm.com/u/204916?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Chris-Albrecht",
"html_url": "https://github.ibm.com/Chris-Albrecht",
"followers_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/followers",
"following_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/repos",
"events_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 3206289,
"node_id": "MDU6TGFiZWwzMjA2Mjg5",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Dev:%20FE",
"name": "Dev: FE",
"color": "fbca04",
"default": false
},
{
"id": 5276101,
"node_id": "MDU6TGFiZWw1Mjc2MTAx",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/P2:%20%F0%9F%9A%A7%20Severe",
"name": "P2: � Severe",
"color": "ffaa00",
"default": false
},
{
"id": 2473367,
"node_id": "MDU6TGFiZWwyNDczMzY3",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Type:%20Bug",
"name": "Type: Bug",
"color": "f2e8e8",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": {
"login": "Putra-Bonaccorsi",
"id": 194681,
"node_id": "MDQ6VXNlcjE5NDY4MQ==",
"avatar_url": "https://avatars.github.ibm.com/u/194681?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi",
"html_url": "https://github.ibm.com/Putra-Bonaccorsi",
"followers_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/followers",
"following_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/repos",
"events_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/received_events",
"type": "User",
"site_admin": false
},
"assignees": [
{
"login": "Putra-Bonaccorsi",
"id": 194681,
"node_id": "MDQ6VXNlcjE5NDY4MQ==",
"avatar_url": "https://avatars.github.ibm.com/u/194681?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi",
"html_url": "https://github.ibm.com/Putra-Bonaccorsi",
"followers_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/followers",
"following_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/repos",
"events_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/received_events",
"type": "User",
"site_admin": false
}
],
"milestone": null,
"comments": 5,
"created_at": "2019-09-25T22:09:45Z",
"updated_at": "2019-09-30T16:52:03Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "## Describe the Bug\r\nThe placeholder image and the alt text that an editor enter for Module 7F video display doesn't get rendered. Instead some other image and alt text are being rendered. \r\n\r\n## To Reproduce\r\nSteps to reproduce the behavior:\r\n1. Create or edit an existing Module 7F band. \r\n2. Create or edit an existing video within this band\r\n3. Upload a placeholder image and populate the alt text field\r\n4. Save the video, band and the page.\r\n5. Notice the uploaded placeholder images doesn't get rendered and some other alt text is being used instead of the one entered via the edit form. \r\n\r\n## Expected behavior\r\nUploaded video placeholder image and alt text populated by the editor should get rendered.\r\n## Screenshots\r\nImage and alt text that are being rendered in the front.\r\n<img width=\"1024\" alt=\"screen shot 2019-09-26 at 2 43 06 pm\" src=\"https://media.github.ibm.com/user/20790/files/a58bc080-e06c-11e9-8f26-a82cdc0dbca3\">\r\n\r\nImage and alt text that is uploaded and populated via the edit form. \r\n<img width=\"478\" alt=\"screen shot 2019-09-26 at 2 44 50 pm\" src=\"https://media.github.ibm.com/user/20790/files/a91f4780-e06c-11e9-9134-b453ebb6e99e\">\r\n\r\n## Desktop\r\n - OS: \r\n - Browser:\r\n - Version:\r\n\r\n## Mobile\r\n - Device:\r\n - OS:\r\n - Browser:\r\n - Version:\r\n\r\n### Considerations\r\n\r\n## Resolution\r\n### Acceptance Criteria (required)\r\n- [ ] Pages containing Module 7F with a video have a placeholder image and required alt text.\r\n\r\n### Build/Deployment Steps\r\n<!-- List any steps that need to be performed manually to complete the work for this ticket. -->\r\n1. Step 1\r\n\r\n### Testing Instructions\r\n<!-- Add any specific instructions for testing the acceptance criteria. -->\r\n1. Step 1\r\n"
},
{
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1067",
"repository_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev",
"labels_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1067/labels{/name}",
"comments_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1067/comments",
"events_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1067/events",
"html_url": "https://github.ibm.com/MSC-Cloud/dev/issues/1067",
"id": 10238580,
"node_id": "MDU6SXNzdWUxMDIzODU4MA==",
"number": 1067,
"title": "UI: Leadspace module 1E renders incorrectly on IE11",
"user": {
"login": "Bruno-Abreu",
"id": 205182,
"node_id": "MDQ6VXNlcjIwNTE4Mg==",
"avatar_url": "https://avatars.github.ibm.com/u/205182?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Bruno-Abreu",
"html_url": "https://github.ibm.com/Bruno-Abreu",
"followers_url": "https://github.ibm.com/api/v3/users/Bruno-Abreu/followers",
"following_url": "https://github.ibm.com/api/v3/users/Bruno-Abreu/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Bruno-Abreu/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Bruno-Abreu/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Bruno-Abreu/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Bruno-Abreu/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Bruno-Abreu/repos",
"events_url": "https://github.ibm.com/api/v3/users/Bruno-Abreu/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Bruno-Abreu/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 3206289,
"node_id": "MDU6TGFiZWwzMjA2Mjg5",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Dev:%20FE",
"name": "Dev: FE",
"color": "fbca04",
"default": false
},
{
"id": 4480487,
"node_id": "MDU6TGFiZWw0NDgwNDg3",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/IE11%20%F0%9F%98%A1",
"name": "IE11 �",
"color": "ffebfa",
"default": false
},
{
"id": 4352519,
"node_id": "MDU6TGFiZWw0MzUyNTE5",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/P4:%20%F0%9F%86%97%20Minor",
"name": "P4: � Minor",
"color": "4f7fc1",
"default": false
},
{
"id": 2473367,
"node_id": "MDU6TGFiZWwyNDczMzY3",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Type:%20Bug",
"name": "Type: Bug",
"color": "f2e8e8",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2019-09-25T20:58:36Z",
"updated_at": "2019-09-27T18:09:15Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "**Tester:** Bruno Abreu\r\n**Date:** 09/25/2019\r\n\r\n**Severity:** Minor \r\n**Location:** https://bugfix-msc-cloud-1062-gvj11bgbkekjumoev2nntkrpff6vrtjj.tugboat.qa/cloud/hybrid-cloud-modules-audit\r\n**OS / OS Version:** Windows 7, 10\r\n**Device / Browser:** IE11\r\n \r\n**Expected Results:** \r\nThe leadspace module 1E will render its elements correctly. \r\n \r\n**Actual Results:** \r\nModule 1E is rendering its components incorrectly on IE11. The CTA and the sub-header are appearing above the header. \r\n \r\n**Steps To Reproduce:** \r\n\t**1.** Launch https://bugfix-msc-cloud-1062-gvj11bgbkekjumoev2nntkrpff6vrtjj.tugboat.qa/cloud/hybrid-cloud-modules-audit on IE11\r\n\t**2.** Observe as sub-header and CTA are positioned above the header\r\n \r\n**Notes:** N/A\r\n\r\n**Rate of Reproduction:** 100%\r\n\r\n\r\n\r\n"
},
{
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1066",
"repository_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev",
"labels_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1066/labels{/name}",
"comments_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1066/comments",
"events_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1066/events",
"html_url": "https://github.ibm.com/MSC-Cloud/dev/issues/1066",
"id": 10217514,
"node_id": "MDU6SXNzdWUxMDIxNzUxNA==",
"number": 1066,
"title": "Make widgets revisionable",
"user": {
"login": "Aguilo-Bosch",
"id": 209064,
"node_id": "MDQ6VXNlcjIwOTA2NA==",
"avatar_url": "https://avatars.github.ibm.com/u/209064?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch",
"html_url": "https://github.ibm.com/Aguilo-Bosch",
"followers_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/followers",
"following_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/repos",
"events_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 4020169,
"node_id": "MDU6TGFiZWw0MDIwMTY5",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Dev:%20BE",
"name": "Dev: BE",
"color": "516df9",
"default": false
},
{
"id": 4352509,
"node_id": "MDU6TGFiZWw0MzUyNTA5",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/P3:%20%E2%9A%A0%EF%B8%8F%20%20Important",
"name": "P3: ⚠️ Important",
"color": "4fc173",
"default": false
},
{
"id": 2473367,
"node_id": "MDU6TGFiZWwyNDczMzY3",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Type:%20Bug",
"name": "Type: Bug",
"color": "f2e8e8",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": {
"login": "Aguilo-Bosch",
"id": 209064,
"node_id": "MDQ6VXNlcjIwOTA2NA==",
"avatar_url": "https://avatars.github.ibm.com/u/209064?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch",
"html_url": "https://github.ibm.com/Aguilo-Bosch",
"followers_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/followers",
"following_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/repos",
"events_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/received_events",
"type": "User",
"site_admin": false
},
"assignees": [
{
"login": "Aguilo-Bosch",
"id": 209064,
"node_id": "MDQ6VXNlcjIwOTA2NA==",
"avatar_url": "https://avatars.github.ibm.com/u/209064?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch",
"html_url": "https://github.ibm.com/Aguilo-Bosch",
"followers_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/followers",
"following_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/repos",
"events_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Aguilo-Bosch/received_events",
"type": "User",
"site_admin": false
}
],
"milestone": null,
"comments": 0,
"created_at": "2019-09-24T16:15:23Z",
"updated_at": "2019-09-25T14:23:00Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "## Describe the Bug\r\nWidgets should be revisionable.\r\n\r\n## To Reproduce\r\nSteps to reproduce the behavior:\r\n1. Create a page builder page with a boilerplate widget, then publish it.\r\n1. Create a new draft of the page and edit the configuration for the boilerplate. Check the button has the new content under the `Latest` tab.\r\n1. The `View` tab also has the new content.\r\n\r\n## Expected behavior\r\nThe `View` tab shows the old content, the `Latest` tab shows the new content.\r\n\r\n## Resolution\r\n### Acceptance Criteria (required)\r\n- [ ] The _latest_ version of the page shows the new widget text being moderated.\r\n- [ ] The _live_ version of the page shows the old (and approved) version of the page.\r\n"
},
{
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1065",
"repository_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev",
"labels_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1065/labels{/name}",
"comments_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1065/comments",
"events_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1065/events",
"html_url": "https://github.ibm.com/MSC-Cloud/dev/issues/1065",
"id": 10217279,
"node_id": "MDU6SXNzdWUxMDIxNzI3OQ==",
"number": 1065,
"title": "Learn Hub Globalization Phase 2",
"user": {
"login": "Chris-Albrecht",
"id": 204916,
"node_id": "MDQ6VXNlcjIwNDkxNg==",
"avatar_url": "https://avatars.github.ibm.com/u/204916?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Chris-Albrecht",
"html_url": "https://github.ibm.com/Chris-Albrecht",
"followers_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/followers",
"following_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/repos",
"events_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 4391115,
"node_id": "MDU6TGFiZWw0MzkxMTE1",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Epic",
"name": "Epic",
"color": "eef0fd",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2019-09-24T15:59:56Z",
"updated_at": "2019-09-25T23:28:43Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "Development Base Branch: `feature/[epic-name]-[version]`\n\n## Description\n\n## Designs/Comps\n- https://ibm.ent.box.com/notes/526979612882\n\n## Resolution\n### Acceptance Criteria (required)\n- [ ] Criterion 1\n"
},
{
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1064",
"repository_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev",
"labels_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1064/labels{/name}",
"comments_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1064/comments",
"events_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1064/events",
"html_url": "https://github.ibm.com/MSC-Cloud/dev/issues/1064",
"id": 10217273,
"node_id": "MDU6SXNzdWUxMDIxNzI3Mw==",
"number": 1064,
"title": "Learn Hub Globalization Phase 1",
"user": {
"login": "Chris-Albrecht",
"id": 204916,
"node_id": "MDQ6VXNlcjIwNDkxNg==",
"avatar_url": "https://avatars.github.ibm.com/u/204916?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Chris-Albrecht",
"html_url": "https://github.ibm.com/Chris-Albrecht",
"followers_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/followers",
"following_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/repos",
"events_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 4391115,
"node_id": "MDU6TGFiZWw0MzkxMTE1",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Epic",
"name": "Epic",
"color": "eef0fd",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2019-09-24T15:59:39Z",
"updated_at": "2019-09-25T23:28:31Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "Development Base Branch: `feature/learn-hub-g11n-phase-1`\n\n## Description\nThis is the MVP for a globalizable learn hub. It consists of ensuring that the taxonomy terms, listing page articles list, and basic components of the articles are globalizable.\n\n## Designs/Comps\n- https://ibm.ent.box.com/notes/526979612882\n\n## Resolution\n### Acceptance Criteria (required)\n- [ ] Learn Hub Home Page is fully globalized.\n- [ ] Learn Hub listing page contains translated filter list, limited to terms that have translated versions of articles tagged to them. (No empty results).\n- [ ] Only articles that have translations into the proper language show in the results. (ex. Only French articles in the French page results).\n- [ ] Article pages have a translated Lead space, body, and term listing.\n- [ ] All content on Globalized pages is translated. The Clamp (header and footer) should be covered by default, so all other components within the content area should also be translated as part of this work.\n"
},
{
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1063",
"repository_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev",
"labels_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1063/labels{/name}",
"comments_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1063/comments",
"events_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1063/events",
"html_url": "https://github.ibm.com/MSC-Cloud/dev/issues/1063",
"id": 10217121,
"node_id": "MDU6SXNzdWUxMDIxNzEyMQ==",
"number": 1063,
"title": "Investigate Translating Non-Field Content/Strings",
"user": {
"login": "Chris-Albrecht",
"id": 204916,
"node_id": "MDQ6VXNlcjIwNDkxNg==",
"avatar_url": "https://avatars.github.ibm.com/u/204916?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Chris-Albrecht",
"html_url": "https://github.ibm.com/Chris-Albrecht",
"followers_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/followers",
"following_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/repos",
"events_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Chris-Albrecht/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 4020169,
"node_id": "MDU6TGFiZWw0MDIwMTY5",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Dev:%20BE",
"name": "Dev: BE",
"color": "516df9",
"default": false
},
{
"id": 3423847,
"node_id": "MDU6TGFiZWwzNDIzODQ3",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Globalization",
"name": "Globalization",
"color": "eefcfd",
"default": false
},
{
"id": 4352509,
"node_id": "MDU6TGFiZWw0MzUyNTA5",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/P3:%20%E2%9A%A0%EF%B8%8F%20%20Important",
"name": "P3: ⚠️ Important",
"color": "4fc173",
"default": false
},
{
"id": 4284499,
"node_id": "MDU6TGFiZWw0Mjg0NDk5",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Type:%20Spike",
"name": "Type: Spike",
"color": "f0f2e8",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2019-09-24T15:50:59Z",
"updated_at": "2019-09-25T23:27:09Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "## Requestors/Champions\n- IBM Cloud Blog Team\n\n## Problem/Motivation\nWe want to make the Learn Hub globalizable, but there are a lot of blocks and hard-coded strings that don't fall into the normal G11n system parameters. What are our options for creating those translated strings?\n\n## Considerations\n- Technical process\n- Administrative process\n\n## Constraints\n- \n\n## Resources (discussions, documents, etc)\n- \n\n## Spike Artifacts\n- Questions that would facilitate discussions with the blog production team in terms of process and priority.\n- Tickets required to complete work necessary to enable translations on these strings.\n- New documentation or references to existing documentation for how to create/manage these translations.\n\n"
},
{
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1062",
"repository_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev",
"labels_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1062/labels{/name}",
"comments_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1062/comments",
"events_url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/issues/1062/events",
"html_url": "https://github.ibm.com/MSC-Cloud/dev/issues/1062",
"id": 10215596,
"node_id": "MDU6SXNzdWUxMDIxNTU5Ng==",
"number": 1062,
"title": "Hybrid Cloud/Duo: Module 1E headline text is not sizing to its container.",
"user": {
"login": "Putra-Bonaccorsi",
"id": 194681,
"node_id": "MDQ6VXNlcjE5NDY4MQ==",
"avatar_url": "https://avatars.github.ibm.com/u/194681?",
"gravatar_id": "",
"url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi",
"html_url": "https://github.ibm.com/Putra-Bonaccorsi",
"followers_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/followers",
"following_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/following{/other_user}",
"gists_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/gists{/gist_id}",
"starred_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/starred{/owner}{/repo}",
"subscriptions_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/subscriptions",
"organizations_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/orgs",
"repos_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/repos",
"events_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/events{/privacy}",
"received_events_url": "https://github.ibm.com/api/v3/users/Putra-Bonaccorsi/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 3206289,
"node_id": "MDU6TGFiZWwzMjA2Mjg5",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Dev:%20FE",
"name": "Dev: FE",
"color": "fbca04",
"default": false
},
{
"id": 4827026,
"node_id": "MDU6TGFiZWw0ODI3MDI2",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Duo%20Theme",
"name": "Duo Theme",
"color": "fbeefd",
"default": false
},
{
"id": 4352509,
"node_id": "MDU6TGFiZWw0MzUyNTA5",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/P3:%20%E2%9A%A0%EF%B8%8F%20%20Important",
"name": "P3: ⚠️ Important",
"color": "4fc173",
"default": false
},
{
"id": 2473367,
"node_id": "MDU6TGFiZWwyNDczMzY3",
"url": "https://github.ibm.com/api/v3/repos/MSC-Cloud/dev/labels/Type:%20Bug",