Parent Directory
|
Revision Log
chore: eslint autofix
1 | import { Schema, model, Document } from 'mongoose'; |
2 | |
3 | export interface IAFK extends Document { |
4 | user: string; |
5 | reason?: string; |
6 | mentions: Array<object>; |
7 | guild_id: string; |
8 | createdAt: Date; |
9 | } |
10 | |
11 | const schema = new Schema({ |
12 | user: { |
13 | type: String, |
14 | required: true |
15 | }, |
16 | reason: { |
17 | type: String, |
18 | required: false |
19 | }, |
20 | mentions: Array, |
21 | guild_id: { |
22 | type: String, |
23 | required: true |
24 | }, |
25 | createdAt: { |
26 | type: Date, |
27 | required: true |
28 | } |
29 | }); |
30 | |
31 | export default model('AFK', schema); |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |