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