fix(RemoveProjectAction): update response code to 204
All checks were successful
Quality Check / Tests (pull_request) Successful in 1m1s
Quality Check / Checkstyle Main (pull_request) Successful in 45s
Build PR / Build and analyze (pull_request) Successful in 1m56s
gitea-sonarqube-bot OK

This commit is contained in:
Jan Gleytenhoover 2024-10-02 11:40:32 +02:00
parent 94fad947da
commit 48b836e203
Signed by: jank
GPG Key ID: B267751B8AE29EFE

@ -24,7 +24,7 @@ public class RemoveProjectAction {
@Operation(summary = "Remove project by ID")
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "Project deleted", content = {}),
@ApiResponse(responseCode = "204", description = "Project deleted", content = {}),
@ApiResponse(responseCode = "404", description = "Project not found", content = @Content)
})
@DeleteMapping("/{id}")