Browse Source

Cleanup old properties.

pull/636/head
Sebastian 5 years ago
parent
commit
f3356bac74
  1. 2
      backend/src/Squidex.Domain.Apps.Entities/Assets/AssetOptions.cs
  2. 2
      backend/src/Squidex.Domain.Apps.Entities/Contents/ContentOptions.cs
  3. 10
      backend/src/Squidex/appsettings.json

2
backend/src/Squidex.Domain.Apps.Entities/Assets/AssetOptions.cs

@ -11,8 +11,6 @@ namespace Squidex.Domain.Apps.Entities.Assets
{ {
public int DefaultPageSize { get; set; } = 200; public int DefaultPageSize { get; set; } = 200;
public int DefaultPageSizeGraphQl { get; set; } = 20;
public int MaxResults { get; set; } = 200; public int MaxResults { get; set; } = 200;
public long MaxSize { get; set; } = 5 * 1024 * 1024; public long MaxSize { get; set; } = 5 * 1024 * 1024;

2
backend/src/Squidex.Domain.Apps.Entities/Contents/ContentOptions.cs

@ -11,8 +11,6 @@ namespace Squidex.Domain.Apps.Entities.Contents
{ {
public int DefaultPageSize { get; set; } = 200; public int DefaultPageSize { get; set; } = 200;
public int DefaultPageSizeGraphQl { get; set; } = 20;
public int MaxResults { get; set; } = 200; public int MaxResults { get; set; } = 200;
} }
} }

10
backend/src/Squidex/appsettings.json

@ -268,11 +268,6 @@
*/ */
"defaultPageSize": 200, "defaultPageSize": 200,
/*
* The default page size for graphql if not specified by a query.
*/
"defaultPageSizeGraphQL": 20,
/* /*
* The maximum number of items to return for each query. * The maximum number of items to return for each query.
* *
@ -287,11 +282,6 @@
*/ */
"defaultPageSize": 200, "defaultPageSize": 200,
/*
* The default page size for graphql if not specified by a query.
*/
"defaultPageSizeGraphQL": 20,
/* /*
* The maximum number of items to return for each query. * The maximum number of items to return for each query.
* *

Loading…
Cancel
Save