Factor in new subscoring model
parent
55e9f9b390
commit
53b77eba2d
|
@ -30,6 +30,7 @@ export interface ScoreInterface extends Document {
|
|||
cloudServices: number,
|
||||
// 0 or 20, 20 points are added if the user is a staff member
|
||||
staff: number,
|
||||
other: number,
|
||||
notify: boolean,
|
||||
inquiries: [{ name: string, reason: string, date: Date }],
|
||||
lastUpdate: Date,
|
||||
|
@ -43,6 +44,7 @@ const Score: Schema = new Schema({
|
|||
moderation: Number,
|
||||
cloudServices: Number,
|
||||
staff: Number,
|
||||
other: Number,
|
||||
notify: Boolean,
|
||||
inquiries: Array,
|
||||
lastUpdate: Date,
|
||||
|
|
Loading…
Reference in New Issue