aboutsummaryrefslogtreecommitdiff
path: root/models/votes
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-06-25 08:56:47 +0300
committereug-vs <eug-vs@keemail.me>2020-06-25 08:56:47 +0300
commitffcb9d248228087ee05c7569784705b41d729aee (patch)
treed753ff19df916a283991b3f9baf668df501cdfff /models/votes
parent75e527334e4e9a94b63704f87aa650c75f13891c (diff)
downloadwhich-api-ffcb9d248228087ee05c7569784705b41d729aee.tar.gz
feat: create vote model
Diffstat (limited to 'models/votes')
-rw-r--r--models/votes/vote.model.ts5
-rw-r--r--models/votes/vote.schema.ts22
2 files changed, 27 insertions, 0 deletions
diff --git a/models/votes/vote.model.ts b/models/votes/vote.model.ts
new file mode 100644
index 0000000..1dbb146
--- /dev/null
+++ b/models/votes/vote.model.ts
@@ -0,0 +1,5 @@
+import { Model, model } from 'mongoose';
+import { VoteSchema, voteSchema } from './vote.schema';
+
+export default model<VoteSchema, Model<VoteSchema>>('Vote', voteSchema);
+
diff --git a/models/votes/vote.schema.ts b/models/votes/vote.schema.ts
new file mode 100644
index 0000000..36b38f2
--- /dev/null
+++ b/models/votes/vote.schema.ts
@@ -0,0 +1,22 @@
+import { Document, Schema, Types } from 'mongoose';
+import { Vote } from 'which-types';
+
+export interface VoteSchema extends Document, Omit<Vote, '_id'> {
+ password: string;
+}
+
+export const voteSchema = new Schema({
+ userId: {
+ type: Types.ObjectId,
+ ref: 'user'
+ },
+ pollId: {
+ type: Types.ObjectId,
+ ref: 'poll'
+ },
+ which: {
+ type: String,
+ match: /left|right/g
+ }
+}, { timestamps: true });
+