galactic-bot/structure/moderation/infractions/Note.js

36 lines
816 B
JavaScript
Raw Normal View History

const { Infraction } = require('../interfaces/');
2020-07-30 14:41:17 +02:00
class NoteInfraction extends Infraction {
static type = 'NOTE';
constructor(client, opts = {}) {
super(client, {
targetType: 'USER',
2021-06-18 02:11:55 +02:00
arguments: opts.arguments,
type: opts.type,
executor: opts.executor.user,
target: opts.target.user,
reason: opts.reason,
guild: opts.guild,
channel: opts.channel,
silent: opts.silent,
2020-07-16 09:54:39 +02:00
points: opts.points,
expiration: opts.expiration,
data: opts.data
});
this.client = client;
this.member = opts.target;
}
async execute() {
await this.handle();
return this._succeed();
}
}
2020-07-30 14:41:17 +02:00
module.exports = NoteInfraction;