4746 create created listener on blocklist for calendar (#5046)

Follows #5031.
Closes #4746
This commit is contained in:
bosiraphael
2024-04-23 11:46:27 +02:00
committed by GitHub
parent 8f6460bec5
commit 824786ff04
20 changed files with 278 additions and 31 deletions

View File

@ -1,10 +1,11 @@
import { Module } from '@nestjs/common';
import { CalendarBlocklistListener } from 'src/modules/calendar/listeners/calendar-blocklist.listener';
import { CalendarChannelListener } from 'src/modules/calendar/listeners/calendar-channel.listener';
@Module({
imports: [],
providers: [CalendarChannelListener],
providers: [CalendarChannelListener, CalendarBlocklistListener],
exports: [],
})
export class CalendarModule {}