diff options
author | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-05-05 01:37:38 +0200 |
---|---|---|
committer | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-05-05 01:37:38 +0200 |
commit | 7d7c18239582f8dcc5337a573c02033c0f5c3194 (patch) | |
tree | cb64f2775335cdd856e81ec9e8ba0bed93fa0985 /backend | |
parent | 60a0c91d48917babd52272f2ddf2a6bb3599e06a (diff) | |
parent | bdabccc6e8f4d35085a4defe61c579ea0002f798 (diff) |
Merge branch 'redesign' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into Guest-Koristik-Ispravka-FrontEnd
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(); |