* Set webhook notifier for triggering webhook events * Called after HTTPAPIService is initialized to avoid circular dependencies
(notifier: IWebhookNotifier)
| 183 | * Called after HTTPAPIService is initialized to avoid circular dependencies |
| 184 | */ |
| 185 | setWebhookNotifier(notifier: IWebhookNotifier): void { |
| 186 | this.webhookNotifier = notifier; |
| 187 | this.taskCreationService.setWebhookNotifier(notifier); |
| 188 | this.taskUpdateService.setWebhookNotifier(notifier); |
| 189 | } |
| 190 | |
| 191 | /** |
| 192 | * Set auto-archive service for handling automatic archiving |