-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathCONFIGURATION.json
More file actions
1423 lines (1422 loc) · 49.8 KB
/
CONFIGURATION.json
File metadata and controls
1423 lines (1422 loc) · 49.8 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
[
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.CollaborateAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.collaborate.enabled",
"key" : "com.owncloud.action.collaborate.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.CopyAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.copy.enabled",
"key" : "com.owncloud.action.copy.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloudAppShared.CreateFolderAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.createFolder.enabled",
"key" : "com.owncloud.action.createFolder.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.DeleteAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.delete.enabled",
"key" : "com.owncloud.action.delete.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.DiscardSceneAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.discardscene.enabled",
"key" : "com.owncloud.action.discardscene.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.DuplicateAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.duplicate.enabled",
"key" : "com.owncloud.action.duplicate.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.FavoriteAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.favorite.enabled",
"key" : "com.owncloud.action.favorite.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.LinksAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.links.enabled",
"key" : "com.owncloud.action.links.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.MakeAvailableOfflineAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.makeAvailableOffline.enabled",
"key" : "com.owncloud.action.makeAvailableOffline.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.MakeUnavailableOfflineAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.makeUnavailableOffline.enabled",
"key" : "com.owncloud.action.makeUnavailableOffline.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.DocumentEditingAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.markup.enabled",
"key" : "com.owncloud.action.markup.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.MediaEditingAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.mediaediting.enabled",
"key" : "com.owncloud.action.mediaediting.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.MoveAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.move.enabled",
"key" : "com.owncloud.action.move.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.OpenInAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.openin.enabled",
"key" : "com.owncloud.action.openin.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.OpenSceneAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.openscene.enabled",
"key" : "com.owncloud.action.openscene.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.RenameAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.rename.enabled",
"key" : "com.owncloud.action.rename.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.ScanAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.scan.enabled",
"key" : "com.owncloud.action.scan.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.DisplayExifMetadataAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.show-exif.enabled",
"key" : "com.owncloud.action.show-exif.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.UnfavoriteAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.unfavorite.enabled",
"key" : "com.owncloud.action.unfavorite.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.UnshareAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.unshare.enabled",
"key" : "com.owncloud.action.unshare.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.UploadCameraMediaAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.upload.camera_media.enabled",
"key" : "com.owncloud.action.upload.camera_media.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.UploadFileAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.uploadfile.enabled",
"key" : "com.owncloud.action.uploadfile.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Actions",
"categoryTag" : "actions",
"classIdentifier" : "action",
"className" : "ownCloud.UploadMediaAction",
"description" : "Controls whether action can be accessed in the app UI.",
"flatIdentifier" : "action.com.owncloud.action.uploadphotos.enabled",
"key" : "com.owncloud.action.uploadphotos.enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "App",
"categoryTag" : "app",
"classIdentifier" : "app",
"className" : "ownCloudAppShared.VendorServices",
"defaultValue" : "https://itunes.apple.com/app/id1359583808?mt=8",
"description" : "URL for the app in the App Store.",
"flatIdentifier" : "app.app-store-link",
"key" : "app-store-link",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "App",
"categoryTag" : "app",
"classIdentifier" : "app",
"className" : "ownCloudAppShared.VendorServices",
"defaultValue" : true,
"description" : "Enable/disable review prompt.",
"flatIdentifier" : "app.enable-review-prompt",
"key" : "enable-review-prompt",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "App",
"categoryTag" : "app",
"classIdentifier" : "app",
"className" : "ownCloudAppShared.VendorServices",
"defaultValue" : true,
"description" : "Enable/disable UI animations.",
"flatIdentifier" : "app.enable-ui-animations",
"key" : "enable-ui-animations",
"status" : "debugOnly",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "App",
"categoryTag" : "app",
"classIdentifier" : "app",
"className" : "ownCloudAppShared.VendorServices",
"defaultValue" : "ios-app@owncloud.com",
"description" : "Email address to send feedback to.",
"flatIdentifier" : "app.feedback-email",
"key" : "feedback-email",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "App",
"categoryTag" : "app",
"classIdentifier" : "app",
"className" : "ownCloudAppShared.VendorServices",
"defaultValue" : true,
"description" : "Controls if the app is built for beta or release purposes.",
"flatIdentifier" : "app.is-beta-build",
"key" : "is-beta-build",
"status" : "debugOnly",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "App",
"categoryTag" : "app",
"classIdentifier" : "app",
"className" : "ownCloudAppShared.VendorServices",
"defaultValue" : true,
"description" : "Enables/disables the recommend to a friend entry in the settings.",
"flatIdentifier" : "app.recommend-to-friend-enabled",
"key" : "recommend-to-friend-enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "App",
"categoryTag" : "app",
"classIdentifier" : "app",
"className" : "ownCloudAppShared.VendorServices",
"defaultValue" : true,
"description" : "Enables/disables the send feedback entry in the settings.",
"flatIdentifier" : "app.send-feedback-enabled",
"key" : "send-feedback-enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "App",
"categoryTag" : "app",
"classIdentifier" : "app",
"className" : "ownCloudAppShared.VendorServices",
"defaultValue" : true,
"description" : "Controls whether a warning should be shown on the first run of a beta version.",
"flatIdentifier" : "app.show-beta-warning",
"key" : "show-beta-warning",
"status" : "debugOnly",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "OAuth2",
"categoryTag" : "oauth2",
"classIdentifier" : "authentication-oauth2",
"className" : "OCAuthenticationMethodOAuth2",
"defaultValue" : "index.php/apps/oauth2/authorize",
"description" : "OAuth2 authorization endpoint.",
"flatIdentifier" : "authentication-oauth2.oa2-authorization-endpoint",
"key" : "oa2-authorization-endpoint",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "OAuth2",
"categoryTag" : "oauth2",
"classIdentifier" : "authentication-oauth2",
"className" : "OCAuthenticationMethodOAuth2",
"defaultValue" : "mxd5OQDk6es5LzOzRvidJNfXLUZS2oN3oUFeXPP8LpPrhx3UroJFduGEYIBOxkY1",
"description" : "OAuth2 Client ID.",
"flatIdentifier" : "authentication-oauth2.oa2-client-id",
"key" : "oa2-client-id",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "OAuth2",
"categoryTag" : "oauth2",
"classIdentifier" : "authentication-oauth2",
"className" : "OCAuthenticationMethodOAuth2",
"defaultValue" : "KFeFWWEZO9TkisIQzR3fo7hfiMXlOpaqP8CFuTbSHzV1TUuGECglPxpiVKJfOXIx",
"description" : "OAuth2 Client Secret.",
"flatIdentifier" : "authentication-oauth2.oa2-client-secret",
"key" : "oa2-client-secret",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "OAuth2",
"categoryTag" : "oauth2",
"classIdentifier" : "authentication-oauth2",
"className" : "OCAuthenticationMethodOAuth2",
"description" : "OAuth2 Expiration Override - lets OAuth2 tokens expire after the provided number of seconds (useful to prompt quick `refresh_token` requests for testing)",
"flatIdentifier" : "authentication-oauth2.oa2-expiration-override-seconds",
"key" : "oa2-expiration-override-seconds",
"status" : "debugOnly",
"type" : "int"
},
{
"autoExpansion" : "none",
"category" : "OAuth2",
"categoryTag" : "oauth2",
"classIdentifier" : "authentication-oauth2",
"className" : "OCAuthenticationMethodOAuth2",
"defaultValue" : "oc://ios.owncloud.com",
"description" : "OAuth2 Redirect URI.",
"flatIdentifier" : "authentication-oauth2.oa2-redirect-uri",
"key" : "oa2-redirect-uri",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "OAuth2",
"categoryTag" : "oauth2",
"classIdentifier" : "authentication-oauth2",
"className" : "OCAuthenticationMethodOAuth2",
"defaultValue" : "index.php/apps/oauth2/api/v1/token",
"description" : "OAuth2 token endpoint.",
"flatIdentifier" : "authentication-oauth2.oa2-token-endpoint",
"key" : "oa2-token-endpoint",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "OIDC",
"categoryTag" : "oidc",
"classIdentifier" : "authentication-oauth2",
"className" : "OCAuthenticationMethodOAuth2",
"defaultValue" : "oc://ios.owncloud.com",
"description" : "OpenID Connect Redirect URI",
"flatIdentifier" : "authentication-oauth2.oidc-redirect-uri",
"key" : "oidc-redirect-uri",
"status" : "supported",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "OIDC",
"categoryTag" : "oidc",
"classIdentifier" : "authentication-oauth2",
"className" : "OCAuthenticationMethodOAuth2",
"defaultValue" : "openid offline_access email profile",
"description" : "OpenID Connect Scope",
"flatIdentifier" : "authentication-oauth2.oidc-scope",
"key" : "oidc-scope",
"status" : "supported",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "Authentication",
"categoryTag" : "authentication",
"classIdentifier" : "authentication",
"className" : "OCAuthenticationMethod",
"defaultValue" : "operating-system",
"description" : "Alternative browser session class to use instead of `ASWebAuthenticationSession`. Please also see Compile Time Configuration if you want to use this.",
"flatIdentifier" : "authentication.browser-session-class",
"key" : "browser-session-class",
"possibleValues" : [
{
"description" : "Use UIWebView for browser sessions. Requires compilation with `OC_FEATURE_AVAILABLE_UIWEBVIEW_BROWSER_SESSION=1` preprocessor flag.",
"value" : "UIWebView"
},
{
"description" : "Use ASWebAuthenticationSession for browser sessions.",
"value" : "operating-system"
}
],
"status" : "supported",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "Authentication",
"categoryTag" : "authentication",
"classIdentifier" : "authentication",
"className" : "OCAuthenticationMethod",
"defaultValue" : false,
"description" : "Indicates whether the app should ask iOS for a private authentication (web) session for OAuth2 or OpenID Connect. Private authentication sessions do not share cookies and other browsing data with the user's normal browser. Apple only promises that [this setting](https://developer.apple.com/documentation/authenticationservices/aswebauthenticationsession/3237231-prefersephemeralwebbrowsersessio) will be honored if the user has set Safari as default browser.",
"flatIdentifier" : "authentication.browser-session-prefers-ephermal",
"key" : "browser-session-prefers-ephermal",
"status" : "supported",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Bookmarks",
"categoryTag" : "bookmarks",
"classIdentifier" : "bookmark",
"className" : "ownCloud.BookmarkViewController",
"description" : "The default URL for the creation of new bookmarks.",
"flatIdentifier" : "bookmark.default-url",
"key" : "default-url",
"status" : "supported",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "Bookmarks",
"categoryTag" : "bookmarks",
"classIdentifier" : "bookmark",
"className" : "ownCloud.BookmarkViewController",
"defaultValue" : true,
"description" : "Controls whether the server URL in the text field during the creation of new bookmarks can be changed.",
"flatIdentifier" : "bookmark.url-editable",
"key" : "url-editable",
"status" : "supported",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Connection",
"categoryTag" : "connection",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : true,
"description" : "Allow the use of background URL sessions. Note: depending on iOS version, the app may still choose not to use them. This settings is overriden by `force-background-url-sessions`.",
"flags" : 4,
"flatIdentifier" : "connection.allow-background-url-sessions",
"key" : "allow-background-url-sessions",
"status" : "debugOnly",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Connection",
"categoryTag" : "connection",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : true,
"description" : "Allow the use of cellular connections.",
"flags" : 4,
"flatIdentifier" : "connection.allow-cellular",
"key" : "allow-cellular",
"status" : "recommended",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Connection",
"categoryTag" : "connection",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : false,
"description" : "Controls whether private links are requested with regular PROPFINDs.",
"flags" : 4,
"flatIdentifier" : "connection.always-request-private-link",
"key" : "always-request-private-link",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "trailing",
"category" : "Security",
"categoryTag" : "security",
"classIdentifier" : "connection",
"className" : "OCConnection",
"description" : "Array of allowed authentication methods. Nil/Missing for no restrictions.",
"flags" : 4,
"flatIdentifier" : "connection.connection-allowed-authentication-methods",
"key" : "connection-allowed-authentication-methods",
"possibleValues" : [
{
"description" : "Basic Auth",
"value" : "com.owncloud.basicauth"
},
{
"description" : "OAuth2",
"value" : "com.owncloud.oauth2"
},
{
"description" : "OpenID Connect",
"value" : "com.owncloud.openid-connect"
}
],
"status" : "recommended",
"type" : "stringArray"
},
{
"autoExpansion" : "none",
"category" : "Security",
"categoryTag" : "security",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : "bookmarkCertificate == serverCertificate",
"description" : "Rule that defines the criteria a certificate needs to meet for OCConnection to recognize it as valid for a bookmark.\n\nExamples of expressions:\n- `bookmarkCertificate == serverCertificate`: the whole certificate needs to be identical to the one stored in the bookmark during setup.\n- `bookmarkCertificate.publicKeyData == serverCertificate.publicKeyData`: the public key of the received certificate needs to be identical to the public key stored in the bookmark during setup.\n- `serverCertificate.passedValidationOrIsUserAccepted == true`: any certificate is accepted as long as it has passed validation by the OS or was accepted by the user.\n- `serverCertificate.commonName == \"demo.owncloud.org\"`: the common name of the certificate must be \"demo.owncloud.org\".\n- `serverCertificate.rootCertificate.commonName == \"DST Root CA X3\"`: the common name of the root certificate must be \"DST Root CA X3\".\n- `serverCertificate.parentCertificate.commonName == \"Let's Encrypt Authority X3\"`: the common name of the parent certificate must be \"Let's Encrypt Authority X3\".\n- `serverCertificate.publicKeyData.sha256Hash.asFingerPrintString == \"2A 00 98 90 BD … F7\"`: the SHA-256 fingerprint of the public key of the server certificate needs to match the provided value.\n",
"flags" : 4,
"flatIdentifier" : "connection.connection-certificate-extended-validation-rule",
"key" : "connection-certificate-extended-validation-rule",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "Connection",
"categoryTag" : "connection",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : "10.0",
"description" : "The minimum server version required.",
"flags" : 4,
"flatIdentifier" : "connection.connection-minimum-server-version",
"key" : "connection-minimum-server-version",
"status" : "debugOnly",
"type" : "string"
},
{
"autoExpansion" : "trailing",
"category" : "Security",
"categoryTag" : "security",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : [
"com.owncloud.openid-connect",
"com.owncloud.oauth2",
"com.owncloud.basicauth"
],
"description" : "Array of authentication methods in order of preference (most preferred first).",
"flags" : 4,
"flatIdentifier" : "connection.connection-preferred-authentication-methods",
"key" : "connection-preferred-authentication-methods",
"possibleValues" : [
{
"description" : "Basic Auth",
"value" : "com.owncloud.basicauth"
},
{
"description" : "OAuth2",
"value" : "com.owncloud.oauth2"
},
{
"description" : "OpenID Connect",
"value" : "com.owncloud.openid-connect"
}
],
"status" : "recommended",
"type" : "stringArray"
},
{
"autoExpansion" : "none",
"category" : "Security",
"categoryTag" : "security",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : "(bookmarkCertificate.publicKeyData == serverCertificate.publicKeyData) OR ((check.parentCertificatesHaveIdenticalPublicKeys == true) AND (serverCertificate.passedValidationOrIsUserAccepted == true))",
"description" : "Rule that defines the criteria that need to be met for OCConnection to accept a renewed certificate and update the bookmark's certificate automatically instead of prompting the user. Used when the extended validation rule fails. Set this to `never` if the user should always be prompted when a server's certificate changed.",
"flags" : 4,
"flatIdentifier" : "connection.connection-renewed-certificate-acceptance-rule",
"key" : "connection-renewed-certificate-acceptance-rule",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "Endpoints",
"categoryTag" : "endpoints",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : "ocs/v2.php/cloud/capabilities",
"description" : "Endpoint to use for retrieving server capabilities.",
"flags" : 4,
"flatIdentifier" : "connection.endpoint-capabilities",
"key" : "endpoint-capabilities",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "Endpoints",
"categoryTag" : "endpoints",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : "ocs/v2.php/apps/files_sharing/api/v1/sharees",
"description" : "Path of the sharing recipient API endpoint.",
"flags" : 4,
"flatIdentifier" : "connection.endpoint-recipients",
"key" : "endpoint-recipients",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "Endpoints",
"categoryTag" : "endpoints",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : "ocs/v2.php/apps/files_sharing/api/v1/remote_shares",
"description" : "Path of the remote shares API endpoint.",
"flags" : 4,
"flatIdentifier" : "connection.endpoint-remote-shares",
"key" : "endpoint-remote-shares",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "Endpoints",
"categoryTag" : "endpoints",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : "ocs/v2.php/apps/files_sharing/api/v1/shares",
"description" : "Path of the shares API endpoint.",
"flags" : 4,
"flatIdentifier" : "connection.endpoint-shares",
"key" : "endpoint-shares",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "Endpoints",
"categoryTag" : "endpoints",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : "status.php",
"description" : "Endpoint to retrieve basic status information and detect an ownCloud installation.",
"flags" : 4,
"flatIdentifier" : "connection.endpoint-status",
"key" : "endpoint-status",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "Endpoints",
"categoryTag" : "endpoints",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : "index.php/apps/files/api/v1/thumbnail",
"description" : "Path of the thumbnail endpoint.",
"flags" : 4,
"flatIdentifier" : "connection.endpoint-thumbnail",
"key" : "endpoint-thumbnail",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "Endpoints",
"categoryTag" : "endpoints",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : "ocs/v2.php/cloud/user",
"description" : "Endpoint to use for retrieving information on logged in user.",
"flags" : 4,
"flatIdentifier" : "connection.endpoint-user",
"key" : "endpoint-user",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "Endpoints",
"categoryTag" : "endpoints",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : "remote.php/dav/files",
"description" : "Endpoint to use for WebDAV.",
"flags" : 4,
"flatIdentifier" : "connection.endpoint-webdav",
"key" : "endpoint-webdav",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "Endpoints",
"categoryTag" : "endpoints",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : "remote.php/dav/meta",
"description" : "Endpoint to use for WebDAV metadata.",
"flags" : 4,
"flatIdentifier" : "connection.endpoint-webdav-meta",
"key" : "endpoint-webdav-meta",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "Connection",
"categoryTag" : "connection",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : false,
"description" : "Forces the use of background URL sessions. Overrides `allow-background-url-sessions`.",
"flags" : 2,
"flatIdentifier" : "connection.force-background-url-sessions",
"key" : "force-background-url-sessions",
"status" : "debugOnly",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Connection",
"categoryTag" : "connection",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : "warn",
"description" : "Policy regarding the use of plain (unencryped) HTTP URLs for creating bookmarks. A value of `warn` will create an issue (typically then presented to the user as a warning), but ultimately allow the creation of the bookmark. A value of `forbidden` will block the use of `http`-URLs for the creation of new bookmarks.",
"flags" : 4,
"flatIdentifier" : "connection.plain-http-policy",
"key" : "plain-http-policy",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "Security",
"categoryTag" : "security",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : false,
"description" : "Controls whether 307 redirects are handled transparently at the HTTP pipeline level (by resending the headers and body).",
"flags" : 4,
"flatIdentifier" : "connection.transparent-temporary-redirect",
"key" : "transparent-temporary-redirect",
"status" : "debugOnly",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Endpoints",
"categoryTag" : "endpoints",
"classIdentifier" : "connection",
"className" : "OCConnection",
"defaultValue" : ".well-known",
"description" : "Path of the .well-known endpoint.",
"flags" : 4,
"flatIdentifier" : "connection.well-known",
"key" : "well-known",
"status" : "advanced",
"type" : "string"
},
{
"autoExpansion" : "none",
"category" : "Connection",
"categoryTag" : "connection",
"classIdentifier" : "core",
"className" : "OCCore",
"defaultValue" : {
"actions" : 10,
"all" : 0,
"download" : 3,
"download-wifi-and-cellular" : 3,
"download-wifi-only" : 2,
"transfer" : 6,
"upload" : 3,
"upload-cellular-and-wifi" : 3,
"upload-wifi-only" : 2
},
"description" : "Concurrency budgets available for sync actions by action category.",
"flatIdentifier" : "core.action-concurrency-budgets",
"key" : "action-concurrency-budgets",
"status" : "advanced",
"type" : "dictionary"
},
{
"autoExpansion" : "none",
"category" : "Privacy",
"categoryTag" : "privacy",
"classIdentifier" : "core",
"className" : "OCCore",
"defaultValue" : true,
"description" : "Add an `Accept-Language` HTTP header using the preferred languages set on the device.",
"flatIdentifier" : "core.add-accept-language-header",
"key" : "add-accept-language-header",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Connection",
"categoryTag" : "connection",
"classIdentifier" : "core",
"className" : "OCCore",
"defaultValue" : true,
"description" : "Enable or disable per-process, in-memory cookie storage.",
"flatIdentifier" : "core.cookie-support-enabled",
"key" : "cookie-support-enabled",
"status" : "supported",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Connection",
"categoryTag" : "connection",
"classIdentifier" : "core",
"className" : "OCCore",
"description" : "Override the availability signal, so the host is considered to always be in maintenance mode (`true`) or never in maintenance mode (`false`).",
"flatIdentifier" : "core.override-availability-signal",
"key" : "override-availability-signal",
"status" : "debugOnly",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Connection",
"categoryTag" : "connection",
"classIdentifier" : "core",
"className" : "OCCore",
"description" : "Override the reachability signal, so the host is always considered reachable (`true`) or unreachable (`false`).",
"flatIdentifier" : "core.override-reachability-signal",
"key" : "override-reachability-signal",
"status" : "debugOnly",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Connection",
"categoryTag" : "connection",
"classIdentifier" : "core",
"className" : "OCCore",
"defaultValue" : [
"*"
],
"description" : "Provide hints that thumbnails are available for items whose MIME-Type starts with any of the strings provided in this array. Providing an empty array turns off thumbnail loading. Providing `[\"*\"]` turns on thumbnail loading for all items.",
"flatIdentifier" : "core.thumbnail-available-for-mime-type-prefixes",
"key" : "thumbnail-available-for-mime-type-prefixes",
"status" : "debugOnly",
"type" : "stringArray"
},
{
"autoExpansion" : "none",
"category" : "Diagnostics",
"categoryTag" : "diagnostics",
"classIdentifier" : "diagnostics",
"className" : "ownCloud.DiagnosticManager",
"defaultValue" : false,
"description" : "Controls whether additional diagnostic options and information is available throughout the user interface.",
"flatIdentifier" : "diagnostics.enabled",
"key" : "enabled",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Display Settings",
"categoryTag" : "displaysettings",
"classIdentifier" : "display",
"className" : "DisplaySettings",
"defaultValue" : false,
"description" : "Controls whether drag and drop should be prevented for items inside the app.",
"flatIdentifier" : "display.prevent-dragging-files",
"key" : "prevent-dragging-files",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Display Settings",
"categoryTag" : "displaysettings",
"classIdentifier" : "display",
"className" : "DisplaySettings",
"defaultValue" : false,
"description" : "Controls whether hidden files (i.e. files starting with `.` ) should also be shown.",
"flatIdentifier" : "display.show-hidden-files",
"key" : "show-hidden-files",
"status" : "advanced",
"type" : "bool"
},
{
"autoExpansion" : "none",
"category" : "Display Settings",