fix: change delete app status code from 204 to 200 (#18398)

Co-authored-by: devxing <devxing@gmail.com>
Co-authored-by: crazywoola <427733928@qq.com>
This commit is contained in:
devxing
2025-04-27 12:12:46 +08:00
committed by GitHub
parent c1559a7c8e
commit 136995d2a1
16 changed files with 19 additions and 19 deletions

View File

@@ -135,7 +135,7 @@ class ExternalApiTemplateApi(Resource):
raise Forbidden()
ExternalDatasetService.delete_external_knowledge_api(current_user.current_tenant_id, external_knowledge_api_id)
return {"result": "success"}, 200
return {"result": "success"}, 204
class ExternalApiUseCheckApi(Resource):