Skip to content

Commit

Permalink
chore : 변수명 변경 (response -> responses)
Browse files Browse the repository at this point in the history
  • Loading branch information
GBGreenBravo committed May 8, 2024
1 parent 0591efb commit 3eca5fa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ public ApiResponse getMeetingsByUserId(@AuthenticationPrincipal UserPrincipal us
@Operation(summary = "크루일정 조회여부 조회", description = "user_id로 가입된 크루들과 각각의 크루일정 조회여부를 조회한다.")
@GetMapping("/meetings/view-settings")
public ApiResponse getCrewMembersByUserId(@AuthenticationPrincipal UserPrincipal userPrincipal) {
List<MyCrewMemberResponse> response = userFacade.getCrewMembersByUserId(userPrincipal.id());
List<MyCrewMemberResponse> responses = userFacade.getCrewMembersByUserId(userPrincipal.id());

return ApiResponse.of(UserMessage.USER_CREW_MEMBERS_READ.getMessage(), response);
return ApiResponse.of(UserMessage.USER_CREW_MEMBERS_READ.getMessage(), responses);
}

@Operation(summary = "크루일정 조회여부 수정", description = "가입된 크루들 각각의 크루일정 조회여부를 수정한다.")
Expand Down

0 comments on commit 3eca5fa

Please sign in to comment.