Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,9 @@ public static class CardFeedUserDTO {
@Schema(description = "작성자 유저 ID", example = "5")
private Long userId;

@Schema(description = "아이디", example= "naniianiida")
private String nameId;

@Schema(description = "닉네임", example = "잇콩")
private String nickname;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class ReactionRestController {

@Operation(
summary = "카드 반응 작성/수정/삭제",
description = "카드에 반응을 작성합니다. 기존에 작성한 반응이 존재하고 같은 반응을 요청하면 해당 반응이 삭제됩니다")
description = "카드에 반응을 작성합니다. 기존에 작성한 반응이 존재하고 같은 반응을 요청하면 해당 반응이 삭제됩니다.")
@PostMapping("/{cardId}/{reactionType}")
public ApiResponse<ReactionResponseDTO.ReactionHandleResponseDto> handleReaction(HttpServletRequest request,
@PathVariable("cardId") Long cardId,
Expand Down
Loading