2020-07-04 12:23:10 +02:00
|
|
|
const { Infraction } = require('../interfaces/');
|
|
|
|
|
2020-07-30 14:41:17 +02:00
|
|
|
class NoteInfraction extends Infraction {
|
2020-07-04 12:23:10 +02:00
|
|
|
|
2021-06-16 06:49:17 +02:00
|
|
|
static type = 'NOTE';
|
|
|
|
|
2020-07-04 12:23:10 +02:00
|
|
|
constructor(client, opts = {}) {
|
|
|
|
|
|
|
|
super(client, {
|
2021-05-10 22:09:03 +02:00
|
|
|
targetType: 'USER',
|
2021-06-16 08:50:01 +02:00
|
|
|
type: opts.type,
|
2020-07-04 12:23:10 +02:00
|
|
|
executor: opts.executor.user,
|
|
|
|
target: opts.target.user,
|
2021-05-10 22:09:03 +02:00
|
|
|
reason: opts.reason,
|
2020-07-04 12:23:10 +02:00
|
|
|
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
|
2020-07-04 12:23:10 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
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;
|