Skip to content

Commit

Permalink
fix(participationType filter): participationType filter for member
Browse files Browse the repository at this point in the history
  • Loading branch information
navneethkrish committed Dec 20, 2024
1 parent 794e282 commit 104b152
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/web-api/src/members/members.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ export class MemberController {
builtQuery.where,
this.membersService.buildNameFilters(queryParams),
this.membersService.buildRoleFilters(queryParams),
this.membersService.buildRecentMembersFilter(queryParams)
this.membersService.buildRecentMembersFilter(queryParams),
this.membersService.buildParticipationTypeFilter(queryParams)
],
};
return await this.membersService.getMemberFilters(builtQuery);
Expand Down

0 comments on commit 104b152

Please sign in to comment.