zerobyte/app/server/modules/notifications/builders/telegram.ts
2025-11-30 17:05:40 +01:00

5 lines
256 B
TypeScript

import type { NotificationConfig } from "~/schemas/notifications";
export function buildTelegramShoutrrrUrl(config: Extract<NotificationConfig, { type: "telegram" }>): string {
return `telegram://${config.botToken}@telegram?channels=${config.chatId}`;
}