refactor: simplify success response in dataset API endpoints by returning status code 204 directly (#19685)

This commit is contained in:
GuanMu 2025-05-14 18:44:35 +08:00 committed by GitHub
commit 17b929124f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -323,7 +323,7 @@ class DocumentDeleteApi(DatasetApiResource):
except services.errors.document.DocumentIndexingError:
raise DocumentIndexingError("Cannot delete document during indexing.")
return {"result": "success"}, 204
return 204
class DocumentListApi(DatasetApiResource):