Skip to content

Commit

Permalink
[fix] 상품 상태 수정 오타 수정 (#164)
Browse files Browse the repository at this point in the history
* #153 fix: 채팅창 목록 조회 문제 해결

- 채팅창만이 존재하고 채팅 로그가 없는 경우가 원인이었습니다.

* #153 fix: nextMessageId가 응답되도록 수정

* #153 fix: 필드멤버 명 변경

* #153 fix: 오타 수정

* #153 fix: 채팅 메시지 목록 조회시 새로운 메시지가 없는 경우 408 -> 200으로 변경

* #153 feat; 채팅방에 없는 회원이 채팅 메시지 목록 조회 요청시 인가 오류 구현

* #153 feat; equalItemId 조건절 별도의 메소드로 구현

* #153 fix: 관심상품 목록 조회시 본인이 관심 등록한 상품 게시글만 조회하도록 변경

* #153 fix: 관심상품 문제 해결

* #153 fix: 페이징 제거

* #153 fix: 페이징 제거

* #153 fix: 브로드캐스팅 문제 해결

* #153 fix: 채팅방 카운트

* #153 fix: 오타 수정
  • Loading branch information
yonghwankim-dev authored Oct 6, 2023
1 parent fda0942 commit 42453da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public ApiResponse<Void> modifyItem(@PathVariable Long itemId,

@PutMapping("/{itemId}/status")
public ApiResponse<Void> modifyItemStatus(@PathVariable Long itemId, @RequestBody ItemStatusModifyRequest request,
@PathVariable Principal principal) {
@AuthPrincipal Principal principal) {
itemService.changeItemStatus(itemId, request.getStatus(), principal);
return ApiResponse.ok("상품 상태 변경에 성공하였습니다.", null);
}
Expand Down

0 comments on commit 42453da

Please sign in to comment.