Fix webhook size too big (#12749)

This commit is contained in:
Charles Bochet
2025-06-20 14:42:25 +02:00
committed by GitHub
parent 3977506796
commit 24fa479cbf
5 changed files with 33 additions and 15 deletions

View File

@ -1,5 +1,4 @@
import { HttpService } from '@nestjs/axios';
import { Logger } from '@nestjs/common';
import crypto from 'crypto';
@ -26,7 +25,6 @@ export type CallWebhookJobData = {
@Processor(MessageQueue.webhookQueue)
export class CallWebhookJob {
private readonly logger = new Logger(CallWebhookJob.name);
constructor(
private readonly httpService: HttpService,
private readonly auditService: AuditService,