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