Add endpoint to list reaction types

This commit is contained in:
Tim
2025-07-01 16:00:52 +08:00
parent de463e0884
commit 43a8c75f88
2 changed files with 16 additions and 0 deletions

View File

@@ -15,6 +15,14 @@ import org.springframework.web.bind.annotation.*;
public class ReactionController {
private final ReactionService reactionService;
/**
* Get all available reaction types.
*/
@GetMapping("/reaction-types")
public ReactionType[] listReactionTypes() {
return ReactionType.values();
}
@PostMapping("/posts/{postId}/reactions")
public ResponseEntity<ReactionDto> reactToPost(@PathVariable Long postId,
@RequestBody ReactionRequest req,