aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/api
diff options
context:
space:
mode:
authorDhravya <[email protected]>2024-06-24 20:40:17 -0500
committerDhravya <[email protected]>2024-06-24 20:40:17 -0500
commite7a80ffd441ea93f499d60aec240d280b5501d5a (patch)
tree69604bcc06e92f61ebb668704ab9a8c9baeb8b06 /apps/web/app/api
parentMerge pull request #80 from Dhravya/telegram-bot (diff)
downloadsupermemory-e7a80ffd441ea93f499d60aec240d280b5501d5a.tar.xz
supermemory-e7a80ffd441ea93f499d60aec240d280b5501d5a.zip
drizzle-orm in dependencies, prod wrangler.toml
Diffstat (limited to 'apps/web/app/api')
-rw-r--r--apps/web/app/api/telegram/route.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/web/app/api/telegram/route.ts b/apps/web/app/api/telegram/route.ts
index b0d05655..59177c4e 100644
--- a/apps/web/app/api/telegram/route.ts
+++ b/apps/web/app/api/telegram/route.ts
@@ -21,7 +21,7 @@ bot.command("start", async (ctx) => {
const cipherd = cipher(user.id.toString());
await ctx.reply(
- `Welcome to Supermemory bot. I am here to help you remember things better. Click here to create and link your accont: http://localhost:3000/signin?telegramUser=${cipherd}`,
+ `Welcome to Supermemory bot. I am here to help you remember things better. Click here to create and link your accont: https://beta.supermemory.ai/signin?telegramUser=${cipherd}`,
);
});
@@ -38,7 +38,7 @@ bot.on("message", async (ctx) => {
if (!dbUser) {
await ctx.reply(
- `Welcome to Supermemory bot. I am here to help you remember things better. Click here to create and link your accont: http://localhost:3000/signin?telegramUser=${cipherd}`,
+ `Welcome to Supermemory bot. I am here to help you remember things better. Click here to create and link your accont: https://beta.supermemory.ai/signin?telegramUser=${cipherd}`,
);
return;