Merge branch 'profile-term-1' into dev

merge-requests/22/merge
Matthew 2021-03-11 01:16:03 -05:00
commit daa51fc79a
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
4 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ export default class Profile extends Command {
super(client); super(client);
this.name = 'profile'; this.name = 'profile';
this.description = 'Manages your profile on CR.'; this.description = 'Manages your profile on CR.';
this.usage = 'profile <bio/github/gitlab> <new value>\n*Provide no value in subcommand to clear data.*'; this.usage = `${this.client.config.prefix}profile <bio/github/gitlab> <new value>\n*Provide no value in subcommand to clear data.*`;
this.permissions = 0; this.permissions = 0;
this.enabled = true; this.enabled = true;
this.subcmds = [Profile_Bio, Profile_GitHub, Profile_Gitlab]; this.subcmds = [Profile_Bio, Profile_GitHub, Profile_Gitlab];

View File

@ -6,7 +6,7 @@ export default class Profile_Bio extends Command {
super(client); super(client);
this.name = 'bio'; this.name = 'bio';
this.description = 'Updates your bio on your profile.'; this.description = 'Updates your bio on your profile.';
this.usage = `${this.client.config.prefix}bio <new bio>`; this.usage = `${this.client.config.prefix}profile bio <new bio>`;
this.permissions = 0; this.permissions = 0;
this.enabled = true; this.enabled = true;
} }

View File

@ -6,7 +6,7 @@ export default class Profile_GitHub extends Command {
super(client); super(client);
this.name = 'github'; this.name = 'github';
this.description = 'Updates your GitHub information on your profile.'; this.description = 'Updates your GitHub information on your profile.';
this.usage = `${this.client.config.prefix}github <GitHub profile URL>`; this.usage = `${this.client.config.prefix}profile github <GitHub profile URL>`;
this.permissions = 0; this.permissions = 0;
this.enabled = true; this.enabled = true;
} }

View File

@ -6,7 +6,7 @@ export default class Profile_GitLab extends Command {
super(client); super(client);
this.name = 'gitlab'; this.name = 'gitlab';
this.description = 'Updates your GitLab information on your profile.'; this.description = 'Updates your GitLab information on your profile.';
this.usage = `${this.client.config.prefix}gitlab <GitLab profile URL>`; this.usage = `${this.client.config.prefix}profile gitlab <GitLab profile URL>`;
this.permissions = 0; this.permissions = 0;
this.enabled = true; this.enabled = true;
} }