feat(project): Delete project (SCRUM-35) #29

Merged
jank merged 8 commits from feature/remove-project into main 2024-10-02 09:43:10 +00:00
Showing only changes of commit 48b836e203 - Show all commits

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

Jan K9f 2024-10-02 11:40:32 +02:00
Signed by: jank
GPG key ID: B267751B8AE29EFE

View file

@ -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}")