diff options
Diffstat (limited to 'models/polls/poll.model.ts')
-rw-r--r-- | models/polls/poll.model.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/models/polls/poll.model.ts b/models/polls/poll.model.ts index ecd8ad8..11d0cfa 100644 --- a/models/polls/poll.model.ts +++ b/models/polls/poll.model.ts @@ -1,13 +1,14 @@ import { Model, model } from 'mongoose'; import { PollSchema, pollSchema } from './poll.schema'; +import { Types } from 'mongoose'; pollSchema.methods.vote = function(userId: string, which: 'left' | 'right'): PollSchema { - const participants = ['left', 'right'].reduce((acc, option) => { + const participants: Types.ObjectId[] = ['left', 'right'].reduce((acc, option) => { const { votes } = this.contents[option]; return acc.concat(votes); }, []); - if (!participants.indexOf(userId) === -1) { + if (!participants.some(user => user.equals(userId))) { this.contents[which].votes.push(userId); } |