Skip to content

Commit

Permalink
fix: getEvent > getEvents
Browse files Browse the repository at this point in the history
  • Loading branch information
w8385 committed May 25, 2024
1 parent 5efcba5 commit 9dab748
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/group/group.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 9dab748

Please sign in to comment.