blob: dc52c120b44c3632188070651410bdd0bdbd3d85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import { Document, Schema, Types } from 'mongoose';
export interface ImageDataSchema {
url: string;
}
export interface PollSchema extends Document {
contents: {
left: ImageDataSchema;
right: ImageDataSchema;
};
createdAt: Date;
authorId: string;
description: string;
vote: (userId: string, which: 'left' | 'right') => PollSchema;
}
export const imageDataSchema = {
url: String
};
export const pollSchema = new Schema({
contents: {
left: imageDataSchema,
right: imageDataSchema
},
authorId: {
type: Types.ObjectId,
ref: 'User'
},
description: String
}, { timestamps: true });
|