This commit is contained in:
2025-12-12 14:23:40 +01:00
parent 6a88fe93ab
commit 2cd3bfbb47
58 changed files with 2866 additions and 260 deletions

View File

@@ -18,7 +18,7 @@ export interface DiscordAdapterConfig {
export class DiscordNotificationAdapter implements INotificationGateway {
private readonly channel: NotificationChannel = 'discord';
private webhookUrl?: string;
private webhookUrl: string | undefined;
constructor(config: DiscordAdapterConfig = {}) {
this.webhookUrl = config.webhookUrl;