feat: notifications to specific Telegram topics

This commit is contained in:
vicke4
2025-02-13 22:20:52 +05:30
parent 209029214e
commit e228325e37
7 changed files with 4524 additions and 1 deletions

View File

@@ -122,6 +122,7 @@ export const createTelegramNotification = async (
.values({
botToken: input.botToken,
chatId: input.chatId,
messageThreadId: input.messageThreadId,
})
.returning()
.then((value) => value[0]);
@@ -193,6 +194,7 @@ export const updateTelegramNotification = async (
.set({
botToken: input.botToken,
chatId: input.chatId,
messageThreadId: input.messageThreadId,
})
.where(eq(telegram.telegramId, input.telegramId))
.returning()