diff options
author | Chocobozzz <me@florianbigard.com> | 2019-01-08 11:26:41 +0100 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2019-01-09 11:15:15 +0100 |
commit | 2f1548fda32c3ba9e53913270394eedfacd55986 (patch) | |
tree | afee28df36a9e00f921603d9091e5d08d5818159 /server/lib/notifier.ts | |
parent | f7cc67b455a12ccae9b0ea16876d166720364357 (diff) | |
download | PeerTube-2f1548fda32c3ba9e53913270394eedfacd55986.tar.gz PeerTube-2f1548fda32c3ba9e53913270394eedfacd55986.tar.zst PeerTube-2f1548fda32c3ba9e53913270394eedfacd55986.zip |
Add notifications in the client
Diffstat (limited to 'server/lib/notifier.ts')
-rw-r--r-- | server/lib/notifier.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/lib/notifier.ts b/server/lib/notifier.ts index 2c51d7101..d1b331346 100644 --- a/server/lib/notifier.ts +++ b/server/lib/notifier.ts | |||
@@ -436,11 +436,11 @@ class Notifier { | |||
436 | private isEmailEnabled (user: UserModel, value: UserNotificationSettingValue) { | 436 | private isEmailEnabled (user: UserModel, value: UserNotificationSettingValue) { |
437 | if (CONFIG.SIGNUP.REQUIRES_EMAIL_VERIFICATION === true && user.emailVerified !== true) return false | 437 | if (CONFIG.SIGNUP.REQUIRES_EMAIL_VERIFICATION === true && user.emailVerified !== true) return false |
438 | 438 | ||
439 | return value === UserNotificationSettingValue.EMAIL || value === UserNotificationSettingValue.WEB_NOTIFICATION_AND_EMAIL | 439 | return value & UserNotificationSettingValue.EMAIL |
440 | } | 440 | } |
441 | 441 | ||
442 | private isWebNotificationEnabled (value: UserNotificationSettingValue) { | 442 | private isWebNotificationEnabled (value: UserNotificationSettingValue) { |
443 | return value === UserNotificationSettingValue.WEB_NOTIFICATION || value === UserNotificationSettingValue.WEB_NOTIFICATION_AND_EMAIL | 443 | return value & UserNotificationSettingValue.WEB |
444 | } | 444 | } |
445 | 445 | ||
446 | static get Instance () { | 446 | static get Instance () { |