diff --git a/src/group/group.controller.ts b/src/group/group.controller.ts index 1fda4c4..bc2b86b 100644 --- a/src/group/group.controller.ts +++ b/src/group/group.controller.ts @@ -184,11 +184,8 @@ export class GroupController { summary: '모임 이벤트 상세 조회', description: '특정 모임의 특정 이벤트를 조회합니다.', }) - getEvent( - @Param('groupId') groupId: string, - @Param('eventId') eventId: string, - ) { - return this.groupService.getEvent(groupId, eventId); + getEvent(@Param('groupId') groupId: string, @Param('eventId') eventId: string) { + return this.groupService.getEvents(groupId, eventId); } @Get(':groupId/transaction')