1
0
Fork 0

Merge branch 'master' of gitlab.libraryofcode.org:engineering/cloudservices

master
Matthew 2021-11-28 15:21:43 -05:00
commit ae272d7aee
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 2 additions and 2 deletions

View File

@ -7,9 +7,9 @@ export default class CWG_Delete extends Command {
constructor(client: Client) {
super(client);
this.name = 'delete';
this.description = 'Unbind a domain to the CWG';
this.description = 'Unbind a domain from the CWG';
this.usage = `${this.client.config.prefix}cwg delete [Domain | Port]`;
this.permissions = { roles: ['662163685439045632'] };
this.permissions = { roles: ['662163685439045632', '701454780828221450'] };
this.aliases = ['unbind'];
this.enabled = true;
}