forked from engineering/cloudservices
disable all securesign commands
parent
2f2d6d823c
commit
3f7ead1db4
|
@ -16,7 +16,7 @@ export default class SecureSign extends Command {
|
|||
this.usage = `Run ${this.client.config.prefix}${this.name} [subcommand] for usage information`;
|
||||
this.aliases = ['ss'];
|
||||
this.subcmds = [Build, Init, Account, ActivateKey, CreateCrt, Alliace];
|
||||
this.enabled = true;
|
||||
this.enabled = false;
|
||||
}
|
||||
|
||||
public async run(message: Message) {
|
||||
|
|
|
@ -9,7 +9,7 @@ export default class SecureSign_ActivateKey extends Command {
|
|||
this.name = 'activatekey';
|
||||
this.description = 'Claims an Activation Key';
|
||||
this.usage = `${this.client.config.prefix}securesign activatekey [key]`;
|
||||
this.enabled = true;
|
||||
this.enabled = false;
|
||||
}
|
||||
|
||||
public async run(message: Message, args: string[]) {
|
||||
|
|
|
@ -10,7 +10,7 @@ export default class SecureSign_Alliance extends Command {
|
|||
this.name = 'alliance';
|
||||
this.description = 'Claims an alliance/promo key';
|
||||
this.usage = `${this.client.config.prefix}securesign alliance [key]`;
|
||||
this.enabled = true;
|
||||
this.enabled = false;
|
||||
this.guildOnly = false;
|
||||
}
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ export default class SecureSign_Build extends Command {
|
|||
this.name = 'build';
|
||||
this.description = 'Shows information about the current build of the CLI';
|
||||
this.usage = `${this.client.config.prefix}securesign build`;
|
||||
this.enabled = true;
|
||||
this.enabled = false;
|
||||
}
|
||||
|
||||
public async run(message: Message, args: string[]) {
|
||||
|
|
|
@ -9,7 +9,7 @@ export default class SecureSign_Init extends Command {
|
|||
this.name = 'createcrt';
|
||||
this.description = 'Creates a new certificate';
|
||||
this.usage = `${this.client.config.prefix}securesign createcrt [-s sign] [-c class] [-m digest]\n\`sign\`: Sign type (ecc/rsa)\n\`class\`: Certificate Class (1/2/3)\n\`digest\`: SHA Digest (256/384/512)`;
|
||||
this.enabled = true;
|
||||
this.enabled = false;
|
||||
this.guildOnly = false;
|
||||
}
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ export default class SecureSign_Init extends Command {
|
|||
this.name = 'init';
|
||||
this.description = 'Inits configuration files and environment variables (DM only)';
|
||||
this.usage = `${this.client.config.prefix}securesign init [hash]`;
|
||||
this.enabled = true;
|
||||
this.enabled = false;
|
||||
this.guildOnly = false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue