diff options
Diffstat (limited to 'server/middlewares/validators/users.ts')
-rw-r--r-- | server/middlewares/validators/users.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/middlewares/validators/users.ts b/server/middlewares/validators/users.ts index 8615de406..c78c67a8c 100644 --- a/server/middlewares/validators/users.ts +++ b/server/middlewares/validators/users.ts | |||
@@ -283,7 +283,8 @@ const usersVideoRatingValidator = [ | |||
283 | const ensureUserRegistrationAllowed = [ | 283 | const ensureUserRegistrationAllowed = [ |
284 | async (req: express.Request, res: express.Response, next: express.NextFunction) => { | 284 | async (req: express.Request, res: express.Response, next: express.NextFunction) => { |
285 | const allowedParams = { | 285 | const allowedParams = { |
286 | body: req.body | 286 | body: req.body, |
287 | ip: req.ip | ||
287 | } | 288 | } |
288 | 289 | ||
289 | const allowedResult = await Hooks.wrapPromiseFun( | 290 | const allowedResult = await Hooks.wrapPromiseFun( |