Parent Directory
|
Revision Log
chore: eslint autofix
1 | import { Schema, model } from 'mongoose'; |
2 | |
3 | const schema = new Schema({ |
4 | reason: { |
5 | type: String, |
6 | required: false |
7 | }, |
8 | user_id: { |
9 | type: String, |
10 | required: true |
11 | }, |
12 | guild_id: { |
13 | type: String, |
14 | required: true |
15 | }, |
16 | channel_id: { |
17 | type: String, |
18 | unique: true, |
19 | required: true |
20 | }, |
21 | role_id: { |
22 | type: String, |
23 | required: true |
24 | }, |
25 | previous_perms: { |
26 | allow: Array, |
27 | deny: Array |
28 | }, |
29 | createdAt: { |
30 | type: Date, |
31 | required: true |
32 | } |
33 | }); |
34 | |
35 | export default model('ChannelLock', schema); |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |