aboutsummaryrefslogtreecommitdiff
path: root/backend/api
diff options
context:
space:
mode:
Diffstat (limited to 'backend/api')
-rw-r--r--backend/api/api/Controllers/FileUploadController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/api/api/Controllers/FileUploadController.cs b/backend/api/api/Controllers/FileUploadController.cs
index 07ab4821..68ab814d 100644
--- a/backend/api/api/Controllers/FileUploadController.cs
+++ b/backend/api/api/Controllers/FileUploadController.cs
@@ -69,7 +69,7 @@ namespace api.Controllers
await file.CopyToAsync(stream);
}
- return Ok();
+ return Ok(fullPath);
}
}
}