disable parse commands
parent
2af97851e1
commit
2f2d6d823c
|
@ -12,6 +12,7 @@ export default class Parse extends Command {
|
||||||
this.description = 'Gets information on a user\'s x509 certificate.';
|
this.description = 'Gets information on a user\'s x509 certificate.';
|
||||||
this.usage = `${this.client.config.prefix}parse [username || user ID]`;
|
this.usage = `${this.client.config.prefix}parse [username || user ID]`;
|
||||||
this.permissions = { roles: ['446104438969466890'] };
|
this.permissions = { roles: ['446104438969466890'] };
|
||||||
|
this.enabled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async run(message: Message, args: string[]) { // eslint-disable-line
|
public async run(message: Message, args: string[]) { // eslint-disable-line
|
||||||
|
|
|
@ -16,6 +16,7 @@ export default class Parseall extends Command {
|
||||||
this.usage = `${this.client.config.prefix}parseall`;
|
this.usage = `${this.client.config.prefix}parseall`;
|
||||||
this.permissions = { roles: ['446104438969466890'] };
|
this.permissions = { roles: ['446104438969466890'] };
|
||||||
this.aliases = ['checkcerts', 'verifyall', 'verifycerts'];
|
this.aliases = ['checkcerts', 'verifyall', 'verifycerts'];
|
||||||
|
this.enabled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async run(message: Message, args: string[]) {
|
public async run(message: Message, args: string[]) {
|
||||||
|
|
Loading…
Reference in New Issue