Add audit clear subcommand
This commit is contained in:
parent
b85af78e5c
commit
10f23fedd9
1 changed files with 27 additions and 0 deletions
|
@ -26,6 +26,9 @@ export default class Audits extends Command {
|
||||||
case "view":
|
case "view":
|
||||||
await this.SendAudit(context);
|
await this.SendAudit(context);
|
||||||
break;
|
break;
|
||||||
|
case "clear":
|
||||||
|
await this.ClearAudit(context);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
await this.SendUsage(context);
|
await this.SendUsage(context);
|
||||||
}
|
}
|
||||||
|
@ -37,6 +40,7 @@ export default class Audits extends Command {
|
||||||
const description = [
|
const description = [
|
||||||
`\`${prefix}audits user <id>\` - Send the audits for this user`,
|
`\`${prefix}audits user <id>\` - Send the audits for this user`,
|
||||||
`\`${prefix}audits view <id>\` - Send information about an audit`,
|
`\`${prefix}audits view <id>\` - Send information about an audit`,
|
||||||
|
`\`${prefix}audits clear <id>\` - Clears an audit for a user by audit id`,
|
||||||
]
|
]
|
||||||
|
|
||||||
const publicEmbed = new PublicEmbed(context, "Usage", description.join("\n"));
|
const publicEmbed = new PublicEmbed(context, "Usage", description.join("\n"));
|
||||||
|
@ -89,4 +93,27 @@ export default class Audits extends Command {
|
||||||
|
|
||||||
await publicEmbed.SendToCurrentChannel();
|
await publicEmbed.SendToCurrentChannel();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private async ClearAudit(context: ICommandContext) {
|
||||||
|
const auditId = context.args[1];
|
||||||
|
|
||||||
|
if (!auditId) {
|
||||||
|
await this.SendUsage(context);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const audit = await Audit.FetchAuditByAuditId(auditId.toUpperCase(), context.message.guild!.id);
|
||||||
|
|
||||||
|
if (!audit) {
|
||||||
|
const errorEmbed = new ErrorEmbed(context, "This audit can not be found.");
|
||||||
|
await errorEmbed.SendToCurrentChannel();
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
await Audit.Remove(Audit, audit);
|
||||||
|
|
||||||
|
const publicEmbed = new PublicEmbed(context, "", "Audit cleared");
|
||||||
|
await publicEmbed.SendToCurrentChannel();
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue