feat: webhook base64 option

This commit is contained in:
Davidson Gomes
2023-10-05 17:05:41 -03:00
parent 966b287026
commit d5eeb68714
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -3,4 +3,5 @@ export class WebhookDto {
url?: string; url?: string;
events?: string[]; events?: string[];
webhook_by_events?: boolean; webhook_by_events?: boolean;
webhook_base64?: boolean;
} }
+1 -1
View File
@@ -26,7 +26,7 @@ export class WebhookService {
return result; return result;
} catch (error) { } catch (error) {
return { enabled: false, url: '', events: [], webhook_by_events: false, webhook_base64 : false }; return { enabled: false, url: '', events: [], webhook_by_events: false, webhook_base64: false };
} }
} }
} }