aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/api
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/app/api')
-rw-r--r--apps/web/app/api/telegram/route.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/web/app/api/telegram/route.ts b/apps/web/app/api/telegram/route.ts
index 59177c4e..000b473a 100644
--- a/apps/web/app/api/telegram/route.ts
+++ b/apps/web/app/api/telegram/route.ts
@@ -107,3 +107,7 @@ bot.on("message", async (ctx) => {
});
export const POST = webhookCallback(bot, "std/http");
+
+export const GET = async () => {
+ return new Response("OK", { status: 200 });
+};