Skip to content

Commit

Permalink
feat: 컨트롤러 url 값 받아오지 못하는 오류 수정 (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
ywonchae1 committed Nov 23, 2024
1 parent d60180c commit 7f76258
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public Api<?> out(@LoginMember Long userId, @PathVariable("cctvId") Long cctvId)

@GetMapping("/list/{groupId}")
public Api<CctvInfoListResponse> cctvInfoList(
@LoginMember Long memberId, @PathVariable Long groupId) {
@LoginMember Long memberId, @PathVariable("groupId") Long groupId) {
CctvInfoListResponse cctvInfoListResponse = cctvService.cctvInfoList(memberId, groupId);
return Api.success(CctvSuccessType.GET_CCTV_DETAIL_LIST, cctvInfoListResponse);
}
Expand Down

0 comments on commit 7f76258

Please sign in to comment.