You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
441 B
13 lines
441 B
4 years ago
|
const mongoose = require('mongoose');
|
||
|
|
||
|
const ModModel = new mongoose.Schema({
|
||
|
gid: {type: String, unique: true},
|
||
|
cases: {type: Map, default: new Map()},
|
||
|
rules: {type: Map, default: new Map()},
|
||
|
auto: {type: Map, default: new Map()},
|
||
|
warnings: {type: Map, default: new Map()},
|
||
|
maxWarnings: {type: Number, default: 0},
|
||
|
onMaxWarn: {type: String, default: 'kick'}
|
||
|
});
|
||
|
|
||
|
module.exports = mongoose.model('mod', ModModel);
|