* Adds support for the "folders only" flag on retrieving siblings of a node. * Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Updated test code. * Removed double secondary ordering by node Id and ensured we include this clause for all sort orders. * Ensure that ordering by node Id is always added only once and last, and only if it's not already been included in the order by clause. --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
29 lines
582 B
JSON
29 lines
582 B
JSON
{
|
|
"$schema": "./appsettings-schema.json",
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Warning",
|
|
"Umbraco.Cms.Tests": "Information"
|
|
},
|
|
"Console": {
|
|
"DisableColors": true
|
|
}
|
|
},
|
|
"Tests": {
|
|
"Database": {
|
|
"DatabaseType": "SQLite", // "SQLite", "LocalDb"
|
|
"PrepareThreadCount": 4,
|
|
"SchemaDatabaseCount": 4,
|
|
"EmptyDatabasesCount": 2,
|
|
"SQLServerMasterConnectionString": ""
|
|
}
|
|
},
|
|
"Umbraco": {
|
|
"CMS": {
|
|
"Content": {
|
|
"AllowedUploadedFileExtensions": ["jpg", "png", "gif", "svg"]
|
|
}
|
|
}
|
|
}
|
|
}
|