mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-04-21 15:32:45 -04:00
6 lines
256 B
TypeScript
6 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}`;
|
|
}
|