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

Contents of /trunk/src/models/AFK.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: 563 byte(s)
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