aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/notifier/shared/common
diff options
context:
space:
mode:
Diffstat (limited to 'server/lib/notifier/shared/common')
-rw-r--r--server/lib/notifier/shared/common/abstract-notification.ts23
-rw-r--r--server/lib/notifier/shared/common/index.ts1
2 files changed, 0 insertions, 24 deletions
diff --git a/server/lib/notifier/shared/common/abstract-notification.ts b/server/lib/notifier/shared/common/abstract-notification.ts
deleted file mode 100644
index 79403611e..000000000
--- a/server/lib/notifier/shared/common/abstract-notification.ts
+++ /dev/null
@@ -1,23 +0,0 @@
1import { MUserWithNotificationSetting, UserNotificationModelForApi } from '@server/types/models'
2import { EmailPayload, UserNotificationSettingValue } from '@shared/models'
3
4export abstract class AbstractNotification <T, U = MUserWithNotificationSetting> {
5
6 constructor (protected readonly payload: T) {
7
8 }
9
10 abstract prepare (): Promise<void>
11 abstract log (): void
12
13 abstract getSetting (user: U): UserNotificationSettingValue
14 abstract getTargetUsers (): U[]
15
16 abstract createNotification (user: U): UserNotificationModelForApi
17 abstract createEmail (to: string): EmailPayload | Promise<EmailPayload>
18
19 isDisabled (): boolean | Promise<boolean> {
20 return false
21 }
22
23}
diff --git a/server/lib/notifier/shared/common/index.ts b/server/lib/notifier/shared/common/index.ts
deleted file mode 100644
index 0b2570278..000000000
--- a/server/lib/notifier/shared/common/index.ts
+++ /dev/null
@@ -1 +0,0 @@
1export * from './abstract-notification'