Skip to content

Commit

Permalink
fix: replace all references to old /praise-activate command with new …
Browse files Browse the repository at this point in the history
…/activate command
  • Loading branch information
mattyg committed May 26, 2022
1 parent 5182a90 commit 2e032a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/api/src/database/migrations/00_initial_settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const settings = [
{
key: 'PRAISE_ACCOUNT_NOT_ACTIVATED_ERROR',
value:
'**❌ Account Not Activated**\nYour account is not activated in the praise system. Unactivated accounts can not praise users. Use the `/praise-activate` command to activate your praise account and to link your eth address.',
'**❌ Account Not Activated**\nYour account is not activated in the praise system. Unactivated accounts can not praise users. Use the `/activate` command to activate your praise account and to link your eth address.',
type: 'Textarea',
},
{
Expand Down Expand Up @@ -98,7 +98,7 @@ const settings = [
{
key: 'PRAISE_ACCOUNT_NOT_ACTIVATED_ERROR_DM',
value:
"**You were just [praised](praiseURL)**\nIt looks like you haven't activated your account... To activate your account, use the `/praise-activate` command in the server.",
"**You were just [praised](praiseURL)**\nIt looks like you haven't activated your account... To activate your account, use the `/activate` command in the server.",
type: 'Textarea',
},
{
Expand Down
2 changes: 1 addition & 1 deletion packages/discord-bot/src/utils/praiseEmbeds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export const notActivatedDM = async (msgUrl: string): Promise<MessageEmbed> => {
.setDescription(msg.replace('{praiseURL}', msgUrl));
}
return new MessageEmbed().setDescription(
`**[YOU HAVE BEEN PRAISED](${msgUrl})\nPRAISE ACCOUNT NOT ACTIVATED. USE \`/praise-activate\` TO ACTIVATE YOUR ACCOUNT. (message not set)`
`**[YOU HAVE BEEN PRAISED](${msgUrl})\nPRAISE ACCOUNT NOT ACTIVATED. USE \`/activate\` TO ACTIVATE YOUR ACCOUNT. (message not set)`
);
};

Expand Down

0 comments on commit 2e032a4

Please sign in to comment.