/[sudobot]/trunk/src/models/ChannelLock.ts
ViewVC logotype

Contents of /trunk/src/models/ChannelLock.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 344 - (show annotations)
Mon Jul 29 17:29:40 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: application/typescript
File size: 618 byte(s)
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