Skip to content

Commit

Permalink
Merge pull request #150 from Morphclue/fix/event-population
Browse files Browse the repository at this point in the history
Fix missing event population
  • Loading branch information
Clashsoft authored Apr 20, 2024
2 parents e802ab4 + 34d4a15 commit 3d01e31
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions apps/backend/src/poll/poll/poll.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ export class PollService implements OnModuleInit {
.findById(id)
.select(readPollSelect)
.populate<{participants: number}>('participants')
.populate<{events: number}>('events')
.exec();
}

Expand Down

0 comments on commit 3d01e31

Please sign in to comment.