From cac3dd5888bff1ced02b64eb4d00f75202acfb1f Mon Sep 17 00:00:00 2001 From: Cyrille Derche Date: Fri, 29 Nov 2024 19:11:02 +0100 Subject: [PATCH] Cleaner text --- apps/bot/src/bot.service.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/bot/src/bot.service.ts b/apps/bot/src/bot.service.ts index 302482b..faab1cc 100644 --- a/apps/bot/src/bot.service.ts +++ b/apps/bot/src/bot.service.ts @@ -22,7 +22,8 @@ export class BotService implements OnModuleInit { this.bot.command('start', async (ctx) => { await ctx.reply( - 'Welcome, {username}!\n\nGet Started\n\nTo get you up and running, there are two simple steps:\n\n1. Add me to your group or channel\n\nTo add me to your group or channel, simply tap on my username (at the top) and select "Add to Group or Channel".\n\nSelect the group or channel you want.\n\nI will need Admin Rights, but you can disable all additional privileges.\n\n2. Verify me on app.togethercrew.com\n\nHead over to https://app.togethercrew.com.\n\nIn your community settings, add a Telegram platform.\n\nCopy the verify command into your group and send it.\n\nI will take care of the rest.', + 'Welcome!\n\nGet Started\n\nTo get you up and running, there are two simple steps:\n\n1. Add me to your group or channel\n\nTo add me to your group or channel, simply tap on my username (at the top) and select "Add to Group or Channel".\n\nSelect the group or channel you want.\n\nI will need Admin Rights, but you can disable all additional privileges.\n\n2. Verify me on app.togethercrew.com\n\nHead over to https://app.togethercrew.com.\n\nIn your community settings, add a Telegram platform.\n\nCopy the verify command into your group and send it.\n\nI will take care of the rest.', + { parse_mode: 'HTML' }, ); });