You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Gets or sets a value for the path to the login screen logo image\nshown on top of the background image set in LoginBackgroundImage.\n",
"description": "Gets or sets a value for the path to the login screen logo image when shown on top\nof a light background (e.g. in mobile resolutions).\n",
"description": "Typed configuration options for the Authorization Code Flow settings for the Delivery API.\n",
486
+
"properties": {
487
+
"Enabled": {
488
+
"type": "boolean",
489
+
"description": "Gets or sets a value indicating whether Authorization Code Flow should be enabled for the Delivery API.\n",
490
+
"default": false
491
+
},
492
+
"LoginRedirectUrls": {
493
+
"type": "array",
494
+
"description": "Gets or sets the URLs allowed to use as redirect targets after a successful login (session authorization).\n",
495
+
"items": {
496
+
"type": "string",
497
+
"format": "uri"
498
+
}
499
+
},
500
+
"LogoutRedirectUrls": {
501
+
"type": "array",
502
+
"description": "Gets or sets the URLs allowed to use as redirect targets after a successful logout (session termination).\n",
503
+
"items": {
504
+
"type": "string",
505
+
"format": "uri"
506
+
}
507
+
}
508
+
}
509
+
},
510
+
"OutputCacheSettings": {
511
+
"type": "object",
512
+
"description": "Typed configuration options for output caching of the Delivery API.\n",
513
+
"properties": {
514
+
"Enabled": {
515
+
"type": "boolean",
516
+
"description": "Gets or sets a value indicating whether the Delivery API output should be cached.\n",
517
+
"default": false
518
+
},
519
+
"ContentDuration": {
520
+
"type": "string",
521
+
"description": "Gets or sets a value indicating how long the Content Delivery API output should be cached.\n",
522
+
"format": "duration",
523
+
"default": "00:01:00"
524
+
},
525
+
"MediaDuration": {
526
+
"type": "string",
527
+
"description": "Gets or sets a value indicating how long the Media Delivery API output should be cached.\n",
528
+
"format": "duration",
529
+
"default": "00:01:00"
530
+
}
531
+
}
532
+
},
439
533
"CoreDebugSettings": {
440
534
"type": "object",
441
535
"description": "Typed configuration options for core debug settings.\n",
@@ -1109,7 +1203,7 @@
1109
1203
"ExplicitlyIndexEachNestedProperty": {
1110
1204
"type": "boolean",
1111
1205
"description": "Gets or sets a value for whether each nested property should have it's own indexed value. Requires a rebuild of indexes when changed.",
1112
-
"default": true
1206
+
"default": false
1113
1207
}
1114
1208
}
1115
1209
},
@@ -1181,6 +1275,10 @@
1181
1275
},
1182
1276
"UnPublishedContentCompression": {
1183
1277
"type": "boolean"
1278
+
},
1279
+
"UsePagedSqlQuery": {
1280
+
"type": "boolean",
1281
+
"default": true
1184
1282
}
1185
1283
}
1186
1284
},
@@ -1346,6 +1444,11 @@
1346
1444
"description": "Gets or sets a value for how long (in minutes) a user is locked out when a lockout occurs.\n",
1347
1445
"format": "int32",
1348
1446
"default": 43200
1447
+
},
1448
+
"AllowConcurrentLogins": {
1449
+
"type": "boolean",
1450
+
"description": "Gets or sets a value indicating whether to allow concurrent logins.\n",
1451
+
"default": false
1349
1452
}
1350
1453
}
1351
1454
},
@@ -1548,6 +1651,13 @@
1548
1651
"type": "string",
1549
1652
"description": "Invalid HTML elements for RichText Editor.\n",
1550
1653
"default": "font"
1654
+
},
1655
+
"CloudApiKey": {
1656
+
"type": [
1657
+
"null",
1658
+
"string"
1659
+
],
1660
+
"description": "Cloud API Key for TinyMCE. This is required to use TinyMCE premium plugins.\n"
1551
1661
}
1552
1662
}
1553
1663
},
@@ -1811,6 +1921,39 @@
1811
1921
}
1812
1922
}
1813
1923
}
1924
+
},
1925
+
"WebhookSettings": {
1926
+
"type": "object",
1927
+
"properties": {
1928
+
"Enabled": {
1929
+
"type": "boolean",
1930
+
"description": "Gets or sets a value indicating whether webhooks are enabled.\n",
1931
+
"default": true
1932
+
},
1933
+
"MaximumRetries": {
1934
+
"type": "integer",
1935
+
"description": "Gets or sets a value indicating the maximum number of retries for all webhooks.\n",
1936
+
"format": "int32",
1937
+
"default": 5
1938
+
},
1939
+
"Period": {
1940
+
"type": "string",
1941
+
"description": "Gets or sets a value for the period of the webhook firing.\n",
1942
+
"format": "duration",
1943
+
"default": "00:00:10"
1944
+
},
1945
+
"EnableLoggingCleanup": {
1946
+
"type": "boolean",
1947
+
"description": "Gets or sets a value indicating whether cleanup of webhook logs are enabled.\n",
1948
+
"default": true
1949
+
},
1950
+
"KeepLogsForDays": {
1951
+
"type": "integer",
1952
+
"description": "Gets or sets a value indicating number of days to keep logs for.\n",
0 commit comments