From 9dab748dcd61b1121554f8cf539d05b80df75240 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=EA=B7=BC=ED=98=95?= Date: Sat, 25 May 2024 11:18:10 +0900 Subject: [PATCH] fix: getEvent > getEvents --- src/group/group.controller.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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')