zerobyte/app/server/modules/notifications/builders/custom.ts
2025-11-22 13:23:53 +01:00

5 lines
204 B
TypeScript

import type { NotificationConfig } from "~/schemas/notifications";
export function buildCustomShoutrrrUrl(config: Extract<NotificationConfig, { type: "custom" }>): string {
return config.shoutrrrUrl;
}