Browse Source

Better default config.

pull/579/head
Sebastian 5 years ago
parent
commit
ed15466c81
  1. 6
      backend/src/Squidex/appsettings.json
  2. 2
      backend/tests/Squidex.Domain.Apps.Core.Tests/Model/Apps/LanguagesConfigTests.cs

6
backend/src/Squidex/appsettings.json

@ -37,9 +37,9 @@
"strongETag": false, "strongETag": false,
/* /*
* Restrict the surrogate keys to 17KB. * Restrict the surrogate keys to the number of characters.
*/ */
"maxSurrogateKeysSize": 8000, "maxSurrogateKeysSize": 0,
"replicated": { "replicated": {
/* /*
@ -51,7 +51,7 @@
"languages": { "languages": {
/* /*
* Use custom langauges where the key is the language code and the value is the english name. * Use custom languages where the key is the language code and the value is the english name.
*/ */
"custom": "" "custom": ""
}, },

2
backend/tests/Squidex.Domain.Apps.Core.Tests/Model/Apps/LanguagesConfigTests.cs

@ -203,7 +203,7 @@ namespace Squidex.Domain.Apps.Core.Model.Apps
} }
[Fact] [Fact]
public void Should_same_langauges_if_removing_single_language() public void Should_same_languages_if_removing_single_language()
{ {
var config_1 = config_0.Remove(Language.EN); var config_1 = config_0.Remove(Language.EN);

Loading…
Cancel
Save