mirror of
https://github.com/docmost/docmost.git
synced 2026-05-08 23:33:09 +08:00
879aa2c3d8
* feat: watchers notification and email preferences * fix: email copy * digests * clean up * fix * clean up * move backlinks queue-up to history processor * fix * fix keys * feat: group notifications * filter * adjust email digest window
13 lines
397 B
TypeScript
13 lines
397 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { WatcherService } from './watcher.service';
|
|
import { WatcherController } from './watcher.controller';
|
|
import { PageAccessModule } from '../page/page-access/page-access.module';
|
|
|
|
@Module({
|
|
imports: [PageAccessModule],
|
|
controllers: [WatcherController],
|
|
providers: [WatcherService],
|
|
exports: [WatcherService],
|
|
})
|
|
export class WatcherModule {}
|