Merge branch 'profile-term-1' into dev
commit
daa51fc79a
|
@ -10,7 +10,7 @@ export default class Profile extends Command {
|
|||
super(client);
|
||||
this.name = 'profile';
|
||||
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.enabled = true;
|
||||
this.subcmds = [Profile_Bio, Profile_GitHub, Profile_Gitlab];
|
||||
|
|
|
@ -6,7 +6,7 @@ export default class Profile_Bio extends Command {
|
|||
super(client);
|
||||
this.name = 'bio';
|
||||
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.enabled = true;
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ export default class Profile_GitHub extends Command {
|
|||
super(client);
|
||||
this.name = 'github';
|
||||
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.enabled = true;
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ export default class Profile_GitLab extends Command {
|
|||
super(client);
|
||||
this.name = 'gitlab';
|
||||
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.enabled = true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue