aboutsummaryrefslogtreecommitdiff
path: root/backend/api
diff options
context:
space:
mode:
Diffstat (limited to 'backend/api')
-rw-r--r--backend/api/api/Controllers/FileController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/api/api/Controllers/FileController.cs b/backend/api/api/Controllers/FileController.cs
index b9b31500..6888f1c7 100644
--- a/backend/api/api/Controllers/FileController.cs
+++ b/backend/api/api/Controllers/FileController.cs
@@ -105,7 +105,7 @@ namespace api.Controllers
fileModel = _fileservice.Create(fileModel);
- return Ok(fileModel);
+ return Ok(fileModel._id);
}
[HttpGet("csvread/{hasHeader}/{fileId}")]