Skip to content

Commit

Permalink
Merge pull request #418 from commons-stack/fix/remove_tec_references
Browse files Browse the repository at this point in the history
Fix/remove tec references
  • Loading branch information
kristoferlund authored May 26, 2022
2 parents ec5c7ac + 2e032a4 commit 32f6f2d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 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 @@ -92,13 +92,13 @@ const settings = [
{
key: 'PRAISE_SUCCESS_DM',
value:
'**👏 Congratulations! You have been Praised! 👏**\n[View your praise in the TEC]({praiseURL})\n**Thank you** for supporting the Token Engineering Commons!',
'**👏 Congratulations! You have been Praised! 👏**\n[View your praise]({praiseURL})\n**Thank you** for supporting the community!',
type: 'Textarea',
},
{
key: 'PRAISE_ACCOUNT_NOT_ACTIVATED_ERROR_DM',
value:
"**You were just [praised in the TEC](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 32f6f2d

Please sign in to comment.