X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmiddlewares%2Fvalidators%2Fuser-history.ts;h=f2dae313437ad42c8a8835b25bdb21b52bd6504b;hb=e364e31e25bd1d4b8d801c845a96d6be708f0a18;hp=541910be557d0c36c10b0e91491fcc568a814636;hpb=7177b46ca1b35aa9d7ed39a06c1dcf41a4fc6180;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/middlewares/validators/user-history.ts b/server/middlewares/validators/user-history.ts index 541910be5..f2dae3134 100644 --- a/server/middlewares/validators/user-history.ts +++ b/server/middlewares/validators/user-history.ts @@ -1,17 +1,14 @@ import express from 'express' import { body, param, query } from 'express-validator' import { exists, isDateValid, isIdValid } from '../../helpers/custom-validators/misc' -import { logger } from '../../helpers/logger' import { areValidationErrors } from './shared' const userHistoryListValidator = [ query('search') .optional() - .custom(exists).withMessage('Should have a valid search'), + .custom(exists), (req: express.Request, res: express.Response, next: express.NextFunction) => { - logger.debug('Checking userHistoryListValidator parameters', { parameters: req.query }) - if (areValidationErrors(req, res)) return return next() @@ -24,8 +21,6 @@ const userHistoryRemoveAllValidator = [ .custom(isDateValid).withMessage('Should have a before date that conforms to ISO 8601'), (req: express.Request, res: express.Response, next: express.NextFunction) => { - logger.debug('Checking userHistoryRemoveAllValidator parameters', { parameters: req.body }) - if (areValidationErrors(req, res)) return return next() @@ -34,11 +29,9 @@ const userHistoryRemoveAllValidator = [ const userHistoryRemoveElementValidator = [ param('videoId') - .custom(isIdValid).withMessage('Should have a valid video id'), + .custom(isIdValid), (req: express.Request, res: express.Response, next: express.NextFunction) => { - logger.debug('Checking userHistoryRemoveElementValidator parameters', { parameters: req.params }) - if (areValidationErrors(req, res)) return return next()