-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathapps.json
More file actions
executable file
·1599 lines (1599 loc) · 60.6 KB
/
apps.json
File metadata and controls
executable file
·1599 lines (1599 loc) · 60.6 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
{
"r_agile_wip": {
"id": "r_agile_wip",
"uuid": "",
"name": "Agile WIP",
"description": "Enables users to set work in progress limit for lists.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "http://restya.com/",
"version": "0.1.2",
"price": "Paid",
"icon": "apps/r_agile_wip/img/r-agile-wip.png",
"settings_description": "",
"large_description": [
"Agile Work In Progress Limit. ",
"**How it works**",
"- Agile Work In progress limit can be set through setting menu (Agile WIP >> Agile WIP) found on each list.",
"- Addition of cards will be limited by the wip limit."
],
"settings": false,
"assets": {
"css": [
"apps/r_agile_wip/css/app.css"
],
"js": [
"apps/r_agile_wip/js/app.js"
]
},
"enabled": true
},
"r_amazon_echo": {
"id": "r_amazon_echo",
"uuid": "",
"name": "Amazon Echo",
"description": "Access your Restyaboard notifications through Amazon Echo. This Restyaboard Alexa Skill is developed using AWS Lambda. You will need to login to Restyaboard in Amazon Alexa Android App.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "http://restya.com/",
"version": "0.1.1",
"price": "Paid",
"icon": "apps/r_amazon_echo/img/r-amazon-echo.png",
"settings_description": "",
"settings": false,
"assets": {
"css": [],
"js": [
"apps/r_amazon_echo/js/app.js"
]
},
"enabled": true
},
"r_attachment_downloader": {
"id": "r_attachment_downloader",
"uuid": "",
"name": "Attachment Downloader",
"description": "It provides the solution to download all the user uploaded files associated with a card in a single click.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "",
"version": "0.1.2",
"price": "Paid",
"icon": "apps/r_attachment_downloader/img/r-attachment_downloader.png",
"settings_description": "",
"settings_links":[],
"settings": false,
"sponsor": "Marc Perna",
"assets": {
"css": [],
"js": [
"apps/r_attachment_downloader/js/app.js"
]
},
"enabled": true
},
"r_auto_archive_expired_cards": {
"id": "r_auto_archive_expired_cards",
"uuid": "",
"name": "Auto Archive Expired Cards",
"description": "Enables automated archiving for expired cards.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "http://restya.com/",
"version": "0.1.4",
"price": "Paid",
"icon": "apps/r_auto_archive_expired_cards/img/r-auto-archive-expired-cards.png",
"settings_description": "",
"settings": false,
"assets": {
"css": [
"apps/r_auto_archive_expired_cards/css/app.css"
],
"js": [
"apps/r_auto_archive_expired_cards/js/app.js"
]
},
"enabled": true
},
"r_board_role_mapper": {
"id": "r_board_role_mapper",
"uuid": "",
"name": "User Role to Board Role Mapper",
"description": "Enables admin to quickly setup user privileges by mapping user role to board role globally.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "",
"version": "0.1.2",
"price": "Paid",
"icon": "apps/r_board_role_mapper/img/r-boardrole-mapper.png",
"settings_description": "",
"large_description": [
"- User Role to Board Role Mapper app helps to define the roles for the board member based on the user roles. User roles define the permissions for users to perform the specified actions.",
"- In a default Restyaboard, there are some predefined roles with a predefined set of permissions. The user roles are Admin, User, Guest. It's one of the solutions for assigning the users to those roles and set their access on the boards.",
"- This App basically is a power-up which is not a part of the core Restyaboard experience."
],
"settings": false,
"sponsor": "Erik Madsen",
"assets": {
"css": [ ],
"js": [
"apps/r_board_role_mapper/js/app.js"
],
"html": [
"apps/r_board_role_mapper/app.html"
]
},
"enabled": true
},
"r_boardsbar": {
"id": "r_boardsbar",
"uid": "",
"name": "BoardsBar",
"description": "Makes starred boards appear in footer for quicker access.",
"author": "ik9999",
"author_email": "q@eqw.me",
"author_url": "https://github.com/ik9999",
"version": "0.1.0",
"price": "Free",
"icon": "https://raw.githubusercontent.com/ik9999/r_boardsbar/master/img/icon128.png",
"settings_description": "Starred boards toolbar plugin for Restyaboard",
"settings": {
},
"assets": {
"css": [
"https://raw.githubusercontent.com/ik9999/r_boardsbar/master/css/app.css"
],
"js": [
"https://raw.githubusercontent.com/ik9999/r_boardsbar/master/js/app.js"
]
},
"enabled": true
},
"r_broadcasts": {
"id": "r_broadcasts",
"uuid": "",
"name": "Broadcasts",
"description": "Enables admin to send notification across all users through top notice and email.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "",
"version": "0.1.5",
"price": "Paid",
"icon": "apps/r_broadcasts/img/r-broadcast.png",
"settings_description": "",
"large_description": [
"- Allows admin role users to send broadcast messages and email to all of our members, at once",
"- It can be used to notify users about scheduled maintenance, recent upgrades and more",
"- Broadcast messages are displayed for every user on all pages of the Restyaboard UI.",
"- Broadcast emails used to notify users via their emails with given broadcast information."
],
"settings_links":[
{
"name":"Settings",
"icon": "icon-cog",
"url":"#/apps/r_broadcast/broadcast"
}
],
"settings": false,
"assets": {
"css": [
"apps/r_broadcasts/css/app.css"
],
"js": [
"apps/r_broadcasts/js/app.js"
],
"html": [
"apps/r_broadcasts/app.html"
]
},
"enabled": true
},
"r_canned_response": {
"id": "r_canned_response",
"uuid": "",
"name": "Canned Response",
"description": "Adds option to setup ready-made text comments in cards.",
"author": "Harry Reid",
"author_email": "harryreid@rediffmail.com",
"author_url": "https://github.com/reidharry",
"version": "0.1.2",
"price": "Paid",
"icon": "apps/r_canned_response/img/r-canned-response.png",
"settings_description": "",
"large_description": [
"- Adds a canned response dropdown next to comment box in card view. Using this you can quickly insert canned response.",
"- You can add your own canned response in `client/apps/r_canned_response/json/app.json`."
],
"settings": false,
"assets": {
"css": [ ],
"js": [
"apps/r_canned_response/js/app.js"
]
},
"enabled": false
},
"r_card_aging": {
"id": "r_card_aging",
"uuid": "",
"name": "Card Aging",
"description": "Cards on a board that are not touched in a long time can be seen. Cards will age noticeably with inactivity if this option is enabled.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "",
"version": "0.1.1",
"price": "Paid",
"icon": "apps/r_card_aging/img/r-card_aging.png",
"settings_description": "Choose Modes for how cards will visibly age with inactivity.",
"settings": {
"cardaging_visiblity_mode": {
"label": "Card Aging Visiblity Mode",
"type": "dropdown",
"options": "regular,pirate",
"info": "e.g., regular/pirate",
"value": "regular",
"is_public": true
}
},
"assets": {
"css": [
"apps/r_card_aging/css/app.css"
],
"js": [
"apps/r_card_aging/js/app.js"
]
},
"enabled": true
},
"r_card_counter": {
"id": "r_card_counter",
"uuid": "",
"name": "Card Counter",
"description": "Shows the number of cards in the lists.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "",
"version": "0.1.1",
"price": "Free",
"icon": "apps/r_card_counter/img/r-card-counter.png",
"settings_description": "",
"large_description": [
"- Disable it in Admin Control Panel for default behavior.",
"- This is a simple sample App to show the possibilities of App platform."
],
"settings": false,
"assets": {
"css": [],
"js": [
"apps/r_card_counter/js/app.js"
]
},
"enabled": false
},
"r_card_template": {
"id": "r_card_template",
"uuid": "",
"name": "Card Template",
"description": "Use existing card information by saving it as a pre-formatted template.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "http://restya.com/",
"version": "0.1.5",
"price": "Paid",
"icon": "apps/r_card_template/img/r_card_template.png",
"settings_description": "",
"large_description" : [
"- Added the feature 'Card template app' which allows the users to create a template with necessary details like members, labels and description.",
"- Further, it offers the possibility to use the same for any other card which demands the same information."
],
"settings": false,
"assets": {
"css": [
"apps/r_card_template/css/app.css"
],
"js": [
"apps/r_card_template/js/app.js"
]
},
"enabled": true
},
"r_chart": {
"id": "r_chart",
"uuid": "",
"name": "Dashboard Charts",
"description": "Adds charts with summary in dashboard, for easy filtering of Today Todos, etc.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "",
"version": "0.1.5",
"price": "Paid",
"icon": "apps/r_chart/img/r-chart.png",
"settings_description": "Different people may use different naming for Todo, Doing and Done. So, it is usually difficult to identify what are actually in Todo, Doing and Done. Below, you can configure how the lists have to be recognized. For a list, you can configure its indicator icon and its color too.",
"settings": {
"r_chart_todo": {
"label" : "Todo",
"info" : "",
"value" : "To do, Todo, New, Probable sale, Wishlist, 36, 36.0.1",
"is_public" : true
},
"r_chart_todo_icon": {
"label" : "Todo Icon",
"info" : "",
"value" : "icon-tasks icon-large",
"is_public" : true
},
"r_chart_todo_color": {
"label" : "Todo Color",
"info" : "",
"value" : "#f47564",
"is_public" : true
},
"r_chart_doing": {
"label" : "Doing",
"info" : "",
"value" : "Doing, Feedback, Confirmed, Assigned, Pending sale, Active, 37, 37.0.1, 37.0.2",
"is_public" : true
},
"r_chart_doing_icon": {
"label" : "Doing Icon",
"info" : "",
"value" : "icon-spinner icon-large",
"is_public" : true
},
"r_chart_doing_color": {
"label" : "Doing Color",
"info" : "",
"value" : "#27c5c3",
"is_public" : true
},
"r_chart_done": {
"label" : "Done",
"info" : "",
"value" : "Done, Resolved, Closed, Completed sale, Acquired, Dead",
"is_public" : true
},
"r_chart_done_icon": {
"label" : "Done Icon",
"info" : "",
"value" : "icon-ok-circle icon-large",
"is_public" : true
},
"r_chart_done_color": {
"label" : "Done Color",
"info" : "",
"value" : "#8dca35",
"is_public" : true
}
},
"assets": {
"css": [
"apps/r_chart/css/app.css"
],
"js": [
"apps/r_chart/js/app.js"
]
},
"enabled": true
},
"r_chat": {
"id": "r_chat",
"uuid": "",
"name": "Chat",
"description": "Enables integration with XMPP based chat.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "",
"version": "0.1.3",
"price": "Paid",
"icon": "apps/r_chat/img/r-chat.png",
"settings_description": "Server URL: Provide server URL, e.g., http://localhost:9200/<br/>Index Name: Used to prefix index names to avoid potential collisions. e.g., restya",
"settings": {
"r_chat_db_host": {
"label" : "DB Host",
"info" : "",
"value" : "REPLACE_CHAT_DB_HOST",
"is_public" : false
},
"r_chat_db_port": {
"label" : "DB Port",
"info" : "",
"value" : "REPLACE_CHAT_DB_PORT",
"is_public" : false
},
"r_chat_db_name": {
"label" : "DB Name",
"info" : "",
"value" : "REPLACE_CHAT_DB_NAME",
"is_public" : false
},
"r_chat_db_user": {
"label" : "DB Username",
"info" : "",
"value" : "REPLACE_CHAT_DB_USERNAME",
"is_public" : false
},
"r_chat_db_password": {
"label" : "DB Password",
"info" : "",
"value" : "REPLACE_CHAT_DB_PASSWORD",
"is_public" : false
},
"r_chat_service_url": {
"label" : "Bosh Service URL",
"info" : "",
"value" : "REPLACE_CHAT_BOSH_SERVICE_URL",
"is_public" : true
},
"r_chat_jabber_host": {
"label" : "Jabber Host",
"info" : "",
"value" : "REPLACE_CHAT_JABBER_HOST",
"is_public" : true
},
"r_chat_jaxl_debug": {
"label" : "JAXL DEBUG",
"info" : "",
"value" : "0",
"is_public" : true
},
"r_chat_client_resource_name": {
"label" : "Client Resource Name",
"info" : "",
"value" : "REPLACE_CHAT_CLIENT_RESOURCE_NAME",
"is_public" : false
}
},
"assets": {
"css": [
"apps/r_chat/css/app.css"
],
"js": [
"apps/r_chat/libs/converse.js",
"apps/r_chat/js/app.js"
]
},
"enabled": false
},
"r_codenames": {
"id": "r_codenames",
"uuid": "",
"name": "Codenames",
"description": "Get the codename wallpaper and legendary music bands productivity beat for boards.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "http://restya.com/",
"version": "0.1.5",
"price": "Free",
"icon": "apps/r_codenames/img/r-codenames.png",
"settings_description": "",
"large_description": [
"Starting from v0.6.6 (Modern Talking), all Restyaboard versions are codenamed after legendary music bands, as a token of respect and appreciation. Anyone can propose their favorite band for upcoming milestones in [GitHub tracker](https://github.com/RestyaPlatform/board/issues/1859). By enabling this app, new boards will get codename wallpaper and productivity beat.",
"",
"Current v1.7 is codenamed after legendary **Scorpions** band",
"## About Scorpions",
"- Scorpions are a German rock band formed in 1965 in Hanover by Rudolf Schenker.Since the band's inception, its musical style has ranged from hard rock to heavy metal.The lineup from 1978–1992 was the most successful incarnation of the group, and included Klaus Meine (vocals), Rudolf Schenker (rhythm guitar), Matthias Jabs (lead guitar), Francis Buchholz (bass), and Herman Rarebell (drums).(Source: Wikipedia) (Source: [Wikipedia](https://en.wikipedia.org/wiki/Scorpions_(band)))",
"- Origin: Hanover, West Germany (1965)",
"- Members: Rudolf Schenker, Klaus Meine, Matthias Jabs, Paweł Mąciwoda, Mikkey Dee",
"- Genres: Hard rock, heavy metal, glam metal"
],
"settings": false,
"assets": {
"css": [ ],
"js": [
"apps/r_codenames/js/app.js"
]
},
"enabled": false
},
"r_cssilize": {
"id": "r_cssilize",
"uuid": "",
"name": "Theming/CSSilize",
"description": "CSSilize, theming partner",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "http://restya.com/",
"version": "0.1.3",
"price": "Free",
"icon": "apps/r_cssilize/img/r-cssilize.png",
"settings_description": "",
"large_description": [
"- CSSilize is our theming partner.",
"- For Restyaboard theming, website designing or mobile apps. Starting from $35."
],
"settings": false,
"assets": {
"css": [
],
"js": [
"apps/r_cssilize/js/app.js"
]
},
"enabled": true
},
"r_custom_fields": {
"id": "r_custom_fields",
"uuid": "",
"name": "Custom Field",
"description": "Get more fields like text, textarea, numbers, checkboxes, dates, and dropdown lists for the cards.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "",
"version": "0.1.6",
"price": "Paid",
"icon": "apps/r_custom_fields/img/r-custom_field.png",
"settings_description": "",
"large_description": [
"- Add Custom Fields to each Card.",
"- Disable it in Admin Control Panel for default behavior.",
"- This is a simple sample App to show the possibilities of App platform."
],
"settings_links":[
{
"name":"Settings",
"icon": "icon-cog",
"url":"#/apps/r_custom_fields/manage"
}
],
"settings": false,
"assets": {
"css": [
"apps/r_custom_fields/css/app.css"
],
"js": [
"apps/r_custom_fields/js/app.js"
],
"html": [
"apps/r_custom_fields/app.html"
]
},
"enabled": true
},
"r_elasticsearch": {
"id": "r_elasticsearch",
"uuid": "",
"name": "Elasticsearch",
"description": "Adds easy filtering of cards. Useful when you have multiple boards",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "",
"version": "0.1.6",
"price": "Paid",
"icon": "apps/r_elasticsearch/img/r-elasticsearch.png",
"settings_description": "",
"settings": {
"r_elasticsearch_server_host": {
"label": "Server Host",
"info": "e.g., localhost",
"value": "REPLACE_ELASTIC_SEARCH_SERVER_HOST",
"is_public": false
},
"r_elasticsearch_server_port": {
"label": "Server Port",
"info": "e.g., 9200",
"value": "REPLACE_ELASTIC_SEARCH_SERVER_PORT",
"is_public": false
},
"r_elasticsearch_index_name": {
"label": "Index Name",
"info": "Used to prefix index names to avoid potential collisions. e.g., restya",
"value": "REPLACE_ELASTIC_SEARCH_INDEX_NAME",
"is_public": false
}
},
"assets": {
"css": [
"apps/r_elasticsearch/css/app.css"
],
"js": [
"apps/r_elasticsearch/js/app.js"
]
},
"enabled": true
},
"r_estimated_time": {
"id": "r_estimated_time",
"uuid": "",
"name": "Estimated Time Tracking",
"description": "Adds estimated time tracking option for each cards.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "http://restya.com/",
"version": "0.1.4",
"price": "Paid",
"icon": "apps/r_estimated_time/img/r-estimated-time.png",
"settings_description": "",
"large_description": [
"Adds estimated time custom input. This will be displayed in the card listing to arrange them easily."
],
"settings": false,
"assets": {
"css": [
"apps/r_estimated_time/css/app.css"
],
"js": [
"apps/r_estimated_time/js/app.js"
]
},
"enabled": true
},
"r_eu_gdpr": {
"id": "r_eu_gdpr",
"uuid": "",
"name": "EU GDPR Cookie Consent Popup",
"description": "Makes Restyaboard instance GDPR cookie compliant by displaying popup.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "http://restya.com/",
"version": "0.1.2",
"price": "Free",
"icon": "apps/r_eu_gdpr/img/r-eu-gdpr.png",
"settings_description": "",
"large_description": [
"The app adds cookie consent widget to Restyaboard instance to make it compliant with European Union General Data Protection Regulation policies."
],
"settings": false,
"assets": {
"css": [ ],
"js": [
"apps/r_eu_gdpr/js/app.js"
]
},
"enabled": true
},
"r_export_csv": {
"id": "r_export_csv",
"uuid": "",
"name": "Export CSV",
"description": "Export card details from a board as CSV",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "http://restya.com/",
"version": "0.1.2",
"price": "Paid",
"icon": "apps/r_export_csv/img/r-export-csv.png",
"settings_description": "",
"settings": false,
"sponsor": "Sergi",
"assets": {
"css": [ ],
"js": [
"apps/r_export_csv/js/app.js"
]
},
"enabled": true
},
"r_freshdesk": {
"id": "r_freshdesk",
"uuid": "",
"name": "Freshdesk",
"description": "Restyaboard has an app listed in the Freshdesk marketplace to manage customer tickets through Restyaboard. The app supplements it by providing the access token that is needed for accessing the Restyaboard from Freshdesk.",
"author": "AgileShoppe",
"author_email": "info@agileshoppe.com",
"author_url": "https://agileshoppe.com",
"version": "0.1.1",
"price": "Paid",
"icon": "apps/r_freshdesk/img/r-freshdesk.png",
"settings_description": "Freshdesk allow users to connect your board to your Freshdesk account.",
"large_description": [
"- Restyaboard app by AgileShoppe in Freshdesk marketplace helps customers of Freshdesk resolve their support tickets through Restyaboard. Using that any card can be created or linked with Freshdesk tickets." ,
"- This app provides the access token required for that Freshdesk app."
],
"settings": {
"r_freshdesk_client_id": {
"label": "Freshdesk Client ID",
"info": "",
"value": "1912270553584916",
"is_public": true
},
"r_is_restyaboard_login": {
"label": "RestyaBoard Login",
"info": "",
"value": "true",
"is_hide": true,
"is_public": false
}
},
"assets": {
"css": [],
"js": [
"apps/r_freshdesk/js/app.js"
]
},
"enabled": true
},
"r_gantt_view": {
"id": "r_gantt_view",
"uuid": "",
"name": "Gantt View",
"description": "Adds Gantt view apart from the default grid view. Gantt chart can be further refined to member or task basis.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "",
"version": "0.1.5",
"price": "Paid",
"icon": "apps/r_gantt_view/img/r-gantt-view.png",
"settings_description": "",
"settings": false,
"sponsor": "Erik Madsen",
"assets": {
"css": [
"apps/r_gantt_view/css/vendor.css",
"apps/r_gantt_view/css/main.css"
],
"js": [
"apps/r_gantt_view/js/app.js"
],
"html": [
"apps/r_gantt_view/app.html"
]
},
"enabled": true
},
"r_gmail_addon": {
"id": "r_gmail_addon",
"uuid": "",
"name": "Gmail Add-on",
"description": "Enables Gmail Add-on link so that users can install Restyaboard Gmail Add-on from Gmail Marketplace.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "",
"version": "0.1.2",
"price": "Free",
"icon": "apps/r_gmail_addon/img/r-gmail-addon.png",
"settings_description": "",
"settings": false,
"assets": {
"css": [],
"js": []
},
"enabled": true
},
"r_gridview_configure": {
"id": "r_gridview_configure",
"uuid": "",
"name": "Grid View Configure",
"description": " The Grid View Configure app allows a user to change the visibility of set of columns at runtime. It is configured by choosing the fields which wants to be shown in front of the cards.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "http://restya.com/board",
"version": "0.1.1",
"price": "Paid",
"icon": "apps/r_gridview_configure/img/r_gridview_configure.png",
"settings_description": "The Grid View Configure app allows a user to change the visibility of set of columns at runtime. It is configured by choosing the fields which wants to be shown in front of the cards.",
"large_description" : [
"- To hide the card additional information in Grid view like Card created date, Card created user, Card ID, List moved date etc.. from cards listing.",
"- Disable it in Admin Control Panel for default behavior.",
"- This is a simple sample App to show the possibilities of App platform."
],
"settings": false,
"assets": {
"css": [],
"js": [
"apps/r_gridview_configure/js/app.js"
],
"html": [
"apps/r_gridview_configure/app.html"
]
},
"enabled": true
},
"r_groups": {
"id": "r_groups",
"uuid": "",
"name": "Groups",
"description": "Allows admin users to create users group template and so multiple users can easily be added into board (instead of one by one).",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "",
"version": "0.1.3",
"price": "Paid",
"icon": "apps/r_groups/img/r-group.png",
"settings_description": "",
"large_description": [
"- Disable it in Admin Control Panel for default behavior.",
"- This is a simple sample App to show the possibilities of App platform."
],
"settings": false,
"assets": {
"css": [
"apps/r_groups/css/app.css"
],
"js": [
"apps/r_groups/js/app.js"
],
"html": [
"apps/r_groups/app.html"
]
},
"enabled": true
},
"r_hangouts_chat_bot": {
"id": "r_hangouts_chat_bot",
"uuid": "",
"name": "Hangouts Chat bot",
"description": "Quickly create new cards and add labels to the cards on your Restyaboard boards from Hangouts Chat.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "",
"version": "0.1.1",
"price": "Paid",
"icon": "apps/r_hangouts_chat_bot/img/r-hangouts-chat-bot.png",
"settings_description": "",
"settings": false,
"assets": {
"css": [],
"js": []
},
"enabled": true
},
"r_hide_card_additional_informations": {
"id": "r_hide_card_additional_informations",
"uuid": "",
"name": "Hide Card Additional Informations",
"description": "To hide the card additional informations like Card created date, Card created user, Card ID and List moved date",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "http://restya.com/",
"version": "0.1.3",
"price": "Free",
"icon": "apps/r_hide_card_additional_informations/img/r-hide-card-additional-informations.png",
"settings_description": "To hide the card additional informations like Card created date, Card created user, Card ID and List moved date",
"large_description": [
"- Hide Card Additional Informations from cards listing.",
"- Disable it in Admin Control Panel for default behavior."
],
"settings": {
"hide_card_created_date": {
"label": "Hide card created date",
"info": "e.g., true/false",
"value": "true",
"is_public": true
},
"hide_card_created_user": {
"label": "Hide card created user",
"info": "e.g., true/false",
"value": "true",
"is_public": true
},
"hide_card_id": {
"label": "Hide card ID",
"info": "e.g., true/false",
"value": "true",
"is_public": true
},
"hide_list_moved_date": {
"label": "Hide list moved date",
"info": "e.g., true/false",
"value": "true",
"is_public": true
}
},
"assets": {
"css": [],
"js": [
"apps/r_hide_card_additional_informations/js/app.js"
]
},
"enabled": false
},
"r_import_github": {
"id": "r_import_github",
"uuid": "",
"name": "Import from GitHub",
"description": "Enables importing projects and tickets from GitHub",
"large_description": [
"**How it works**",
"* Creates new boards for each GitHub repositories.",
"* Creates users with password 'restya' and email as empty for each repository users from GitHub.",
"* Assigns created users as board members.",
"* Creates default lists for each board which are New, Assigned, InProgress, Feedback, Closed.",
"* Inserts every issue as a card in the list based on following criteria: ",
" * If issue state is not equal to open, issue will be added as a card in 'Closed' list",
" * If issue comment count is not equal zero, issue will be as a card added in 'Feedback' list.",
" * If issue has milestone date, issue will be added as a card in 'InProgress' list.",
" * If issue assigned to user, issue will be added as a card in 'Assigned' list.",
" * If any above criteria is not matched, issue will be added as a card in 'New' list.",
"* Assigns labels to each cards, milestone date to card due date and assigned users to card members.",
"* Inserts issue comments to respective card comments."
],
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "http://restya.com/",
"version": "0.1.5",
"price": "Paid",
"icon": "apps/r_import_github/img/r-import-github.png",
"settings_description": "Register a new application in GitHub in this URL <a href='https://github.com/settings/applications/new' target='_blank'>https://github.com/settings/applications/new</a> with providing below details,<br/>Application Name: ##SITE_NAME##<br/>Homepage URL: ##SITE_URL##<br/>Application description: Give some description about your site<br/>Authorization callback URL: ##SITE_URL##/apps/r_import_github/login.html",
"settings": {
"r_import_github_client_id": {
"label" : "GitHub Client ID",
"info" : "",
"value" : "REPLACE_GITHUB_CLIENT_ID",
"is_public" : true
},
"r_import_github_client_secret": {
"label" : "GitHub Client Secret",
"info" : "",
"value" : "REPLACE_GITHUB_CLIENT_SECRET",
"is_public" : false
},
"r_import_github_oauth_token_url": {
"label" : "GitHub OAuth Token URL",
"info" : "",
"value" : "https://github.com/login/oauth/access_token",
"is_public" : false
}
},
"assets": {
"css": [],
"js": [
"apps/r_import_github/js/libs/github.js",
"apps/r_import_github/js/app.js"
]
},
"enabled": true
},
"r_insights": {
"id": "r_insights",
"uuid": "",
"name": "Insights",
"description": "Enables insights about throughput, cycle time, spent time and list time of boards.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "",
"version": "0.1.4",
"price": "Paid",
"icon": "apps/r_insights/img/r-insights.png",
"settings_description": "",
"large_description": [
"- In Insights you’ll find the data you need to better understand and make smarter decisions about your project in the Restyaboard.",
"- You’ll also be able to quickly track performance. It’s easier to get your project status and performance with new data views and visualizations. ",
"- This App basically is a power-up which is not a part of the core Restyaboard experience."
],
"settings": false,
"sponsor": "Ramachandran",
"assets": {
"css": [ ],
"js": [
"apps/r_insights/lib/highcharts.js",
"apps/r_insights/js/app.js"
],
"html": [
"apps/r_insights/app.html"
]
},
"mutationObservers": {
"header": {
"board_view_header" :"insertInsights"
}
},
"enabled": true
},
"r_instant_add_card": {
"id": "r_instant_add_card",
"uuid": "",
"name": "Instant Add Card",
"description": "Allows users to add card quickly across boards--without having to open boards.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "",
"version": "0.1.5",
"price": "Paid",
"icon": "apps/r_instant_add_card/img/r-instant-add-card.png",
"settings_description": "",
"settings": false,
"assets": {
"css": [ ],
"js": [
"apps/r_instant_add_card/js/app.js"
]
},
"enabled": true
},
"r_kanban_printer": {
"id": "r_kanban_printer",
"uid": "",
"name": "Helper app for the Kanban Printer",
"description": "Allows users to print list name and card title on sticky sheets.",
"author": "Restya",
"author_email": "info@restya.com",
"author_url": "",