Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/remove tec references #418

Merged
merged 2 commits into from
May 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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