diff options
Diffstat (limited to 'server/middlewares/validators/user-notifications.ts')
-rw-r--r-- | server/middlewares/validators/user-notifications.ts | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/server/middlewares/validators/user-notifications.ts b/server/middlewares/validators/user-notifications.ts index 3ded8d8cf..308b32655 100644 --- a/server/middlewares/validators/user-notifications.ts +++ b/server/middlewares/validators/user-notifications.ts | |||
@@ -1,15 +1,14 @@ | |||
1 | import * as express from 'express' | 1 | import * as express from 'express' |
2 | import 'express-validator' | 2 | import { body, query } from 'express-validator' |
3 | import { body, query } from 'express-validator/check' | ||
4 | import { logger } from '../../helpers/logger' | 3 | import { logger } from '../../helpers/logger' |
5 | import { areValidationErrors } from './utils' | 4 | import { areValidationErrors } from './utils' |
6 | import { isUserNotificationSettingValid } from '../../helpers/custom-validators/user-notifications' | 5 | import { isUserNotificationSettingValid } from '../../helpers/custom-validators/user-notifications' |
7 | import { isNotEmptyIntArray } from '../../helpers/custom-validators/misc' | 6 | import { isNotEmptyIntArray, toBooleanOrNull } from '../../helpers/custom-validators/misc' |
8 | 7 | ||
9 | const listUserNotificationsValidator = [ | 8 | const listUserNotificationsValidator = [ |
10 | query('unread') | 9 | query('unread') |
11 | .optional() | 10 | .optional() |
12 | .toBoolean() | 11 | .customSanitizer(toBooleanOrNull) |
13 | .isBoolean().withMessage('Should have a valid unread boolean'), | 12 | .isBoolean().withMessage('Should have a valid unread boolean'), |
14 | 13 | ||
15 | (req: express.Request, res: express.Response, next: express.NextFunction) => { | 14 | (req: express.Request, res: express.Response, next: express.NextFunction) => { |