From 9e620d0ca19bfe17b95e5f17355f26e585e922e0 Mon Sep 17 00:00:00 2001 From: pavelbannov Date: Tue, 30 Jul 2019 16:36:08 +0300 Subject: [PATCH] Api: fix count --- common/ASC.Api.Core/Core/ApiContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/ASC.Api.Core/Core/ApiContext.cs b/common/ASC.Api.Core/Core/ApiContext.cs index fd07711a56..6f98a41743 100644 --- a/common/ASC.Api.Core/Core/ApiContext.cs +++ b/common/ASC.Api.Core/Core/ApiContext.cs @@ -41,7 +41,7 @@ namespace ASC.Api.Core HttpContext = httpContext; //TODO - uint ItemsPerPage = 25; + uint ItemsPerPage = 1000; Count = 0; //Try parse values string count = GetRequestValue("count");