diff options
author | Chocobozzz <me@florianbigard.com> | 2019-07-25 17:28:45 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-07-25 17:28:45 +0200 |
commit | 2b65c4e53511ccb85b17479cb1c62717afb8511c (patch) | |
tree | 1dd9ecd1803023fa66152c4746c6050e57adceaa /server/middlewares/validators/users.ts | |
parent | 552d95b1e69fbbd99f5bc300a127457e1b97b9df (diff) | |
download | PeerTube-2b65c4e53511ccb85b17479cb1c62717afb8511c.tar.gz PeerTube-2b65c4e53511ccb85b17479cb1c62717afb8511c.tar.zst PeerTube-2b65c4e53511ccb85b17479cb1c62717afb8511c.zip |
Fix scheduled privacy and verify email validations
Diffstat (limited to 'server/middlewares/validators/users.ts')
-rw-r--r-- | server/middlewares/validators/users.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/middlewares/validators/users.ts b/server/middlewares/validators/users.ts index db03dc231..da92c715d 100644 --- a/server/middlewares/validators/users.ts +++ b/server/middlewares/validators/users.ts | |||
@@ -2,7 +2,7 @@ import * as Bluebird from 'bluebird' | |||
2 | import * as express from 'express' | 2 | import * as express from 'express' |
3 | import { body, param } from 'express-validator' | 3 | import { body, param } from 'express-validator' |
4 | import { omit } from 'lodash' | 4 | import { omit } from 'lodash' |
5 | import { isIdOrUUIDValid, toIntOrNull } from '../../helpers/custom-validators/misc' | 5 | import { isIdOrUUIDValid, toBooleanOrNull, toIntOrNull } from '../../helpers/custom-validators/misc' |
6 | import { | 6 | import { |
7 | isUserAdminFlagsValid, | 7 | isUserAdminFlagsValid, |
8 | isUserAutoPlayVideoValid, | 8 | isUserAutoPlayVideoValid, |
@@ -357,7 +357,7 @@ const usersVerifyEmailValidator = [ | |||
357 | .not().isEmpty().withMessage('Should have a valid verification string'), | 357 | .not().isEmpty().withMessage('Should have a valid verification string'), |
358 | body('isPendingEmail') | 358 | body('isPendingEmail') |
359 | .optional() | 359 | .optional() |
360 | .customSanitizer(toIntOrNull), | 360 | .customSanitizer(toBooleanOrNull), |
361 | 361 | ||
362 | async (req: express.Request, res: express.Response, next: express.NextFunction) => { | 362 | async (req: express.Request, res: express.Response, next: express.NextFunction) => { |
363 | logger.debug('Checking usersVerifyEmail parameters', { parameters: req.params }) | 363 | logger.debug('Checking usersVerifyEmail parameters', { parameters: req.params }) |