backend: Add TODO to retrieve webhook configuration from the database

This commit is contained in:
juancarmore 2025-03-28 18:53:01 +01:00
parent a0c4f8ac1b
commit 9fe3ac579b

View File

@ -99,6 +99,7 @@ export class OpenViduWebhookService {
}
private isWebhookEnabled(): boolean {
// TODO: Retrieve this from the database
return !!MEET_WEBHOOK_URL && MEET_WEBHOOK_ENABLED === 'true';
}
}