aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-06-23 23:59:31 +0300
committereug-vs <eug-vs@keemail.me>2020-06-23 23:59:31 +0300
commitb054bd6cf5be0eed0c17fbacec8bcc09cf013d44 (patch)
tree481e8438ad89af41562aa9f93f26682796a98ae5
parentdbfb0d30f0e5cd44ea188d72ceb05acac2ac40d7 (diff)
downloadwhich-api-b054bd6cf5be0eed0c17fbacec8bcc09cf013d44.tar.gz
fix: check user correctly
-rw-r--r--models/polls/poll.model.ts5
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);
}