diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-09-04 20:07:54 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-09-04 20:07:54 +0200 |
commit | b0f9f39ed70299a208d1b388c72de8b7f3510cb7 (patch) | |
tree | 4b7d388125265533ac2f6d4bf457d018617e1db6 /server/middlewares/validators/users.ts | |
parent | e7dbeae8d915cdf4470ceb51c2724b04148b30b5 (diff) | |
download | PeerTube-b0f9f39ed70299a208d1b388c72de8b7f3510cb7.tar.gz PeerTube-b0f9f39ed70299a208d1b388c72de8b7f3510cb7.tar.zst PeerTube-b0f9f39ed70299a208d1b388c72de8b7f3510cb7.zip |
Begin user quota
Diffstat (limited to 'server/middlewares/validators/users.ts')
-rw-r--r-- | server/middlewares/validators/users.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/middlewares/validators/users.ts b/server/middlewares/validators/users.ts index 71e529872..eeb0e3557 100644 --- a/server/middlewares/validators/users.ts +++ b/server/middlewares/validators/users.ts | |||
@@ -12,6 +12,7 @@ function usersAddValidator (req: express.Request, res: express.Response, next: e | |||
12 | req.checkBody('username', 'Should have a valid username').isUserUsernameValid() | 12 | req.checkBody('username', 'Should have a valid username').isUserUsernameValid() |
13 | req.checkBody('password', 'Should have a valid password').isUserPasswordValid() | 13 | req.checkBody('password', 'Should have a valid password').isUserPasswordValid() |
14 | req.checkBody('email', 'Should have a valid email').isEmail() | 14 | req.checkBody('email', 'Should have a valid email').isEmail() |
15 | req.checkBody('videoQuota', 'Should have a valid user quota').isUserVideoQuotaValid() | ||
15 | 16 | ||
16 | logger.debug('Checking usersAdd parameters', { parameters: req.body }) | 17 | logger.debug('Checking usersAdd parameters', { parameters: req.body }) |
17 | 18 | ||
@@ -55,6 +56,7 @@ function usersUpdateValidator (req: express.Request, res: express.Response, next | |||
55 | // Add old password verification | 56 | // Add old password verification |
56 | req.checkBody('password', 'Should have a valid password').optional().isUserPasswordValid() | 57 | req.checkBody('password', 'Should have a valid password').optional().isUserPasswordValid() |
57 | req.checkBody('displayNSFW', 'Should have a valid display Not Safe For Work attribute').optional().isUserDisplayNSFWValid() | 58 | req.checkBody('displayNSFW', 'Should have a valid display Not Safe For Work attribute').optional().isUserDisplayNSFWValid() |
59 | req.checkBody('videoQuota', 'Should have a valid user quota').optional().isUserVideoQuotaValid() | ||
58 | 60 | ||
59 | logger.debug('Checking usersUpdate parameters', { parameters: req.body }) | 61 | logger.debug('Checking usersUpdate parameters', { parameters: req.body }) |
60 | 62 | ||