backend: Update webhook preferences to make URL optional

This commit is contained in:
Carlos Santos 2025-05-06 17:26:17 +02:00
parent 8e0481c337
commit b12e1247c3

View File

@ -12,7 +12,7 @@ export interface GlobalPreferences {
export interface WebhookPreferences {
enabled: boolean;
url: string;
url?: string;
// events: WebhookEvent[];
}