diff options
Diffstat (limited to 'backend')
-rw-r--r-- | backend/api/api/Controllers/FileController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/api/api/Controllers/FileController.cs b/backend/api/api/Controllers/FileController.cs index 99d98a78..1d995068 100644 --- a/backend/api/api/Controllers/FileController.cs +++ b/backend/api/api/Controllers/FileController.cs @@ -96,7 +96,7 @@ namespace api.Controllers [HttpGet("csvread/{fileId}/{skipRows}/{takeRows}")] [Authorize(Roles = "User,Guest")] - public ActionResult<string> CsvRead(string fileId, int skipRows = 0, int takeRows = 10) + public ActionResult<string> CsvRead(string fileId, int skipRows = 1, int takeRows = 11) { string uploaderId = getUserId(); |