diff options
Diffstat (limited to 'server/helpers/custom-validators/user-notifications.ts')
-rw-r--r-- | server/helpers/custom-validators/user-notifications.ts | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/server/helpers/custom-validators/user-notifications.ts b/server/helpers/custom-validators/user-notifications.ts index 4fb5d922d..02ea3bbc2 100644 --- a/server/helpers/custom-validators/user-notifications.ts +++ b/server/helpers/custom-validators/user-notifications.ts | |||
@@ -9,8 +9,12 @@ function isUserNotificationTypeValid (value: any) { | |||
9 | 9 | ||
10 | function isUserNotificationSettingValid (value: any) { | 10 | function isUserNotificationSettingValid (value: any) { |
11 | return exists(value) && | 11 | return exists(value) && |
12 | validator.isInt('' + value) && | 12 | validator.isInt('' + value) && ( |
13 | UserNotificationSettingValue[ value ] !== undefined | 13 | value === UserNotificationSettingValue.NONE || |
14 | value === UserNotificationSettingValue.WEB || | ||
15 | value === UserNotificationSettingValue.EMAIL || | ||
16 | value === (UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL) | ||
17 | ) | ||
14 | } | 18 | } |
15 | 19 | ||
16 | export { | 20 | export { |