Nuke again (last time I swear) #6

Manually merged
kevin merged 11 commits from feature/backend-endpoints into main 2026-05-02 06:45:38 +00:00
31 changed files with 695 additions and 4 deletions
Showing only changes of commit 24671fefef - Show all commits

View File

@@ -55,7 +55,7 @@ public class ServerController {
@ApiResponse(responseCode = "400", description = "Invalid request")
})
@PostMapping("/")
public ResponseEntity<PostServerResponse> postMethodName(@Valid @RequestBody PostServerRequest request) {
public ResponseEntity<PostServerResponse> createNewServer(@Valid @RequestBody PostServerRequest request) {
try {
var response = serverService.createServer(request);
return ResponseEntity.ok(response);