diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-07-01 16:16:40 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-07-01 16:16:40 +0200 |
commit | fc51fde048f2c3ce1dd3e85f5528335040bae894 (patch) | |
tree | 6de1eeac1291d9398cc99cda926b189c39b3ea0b /server/middlewares/reqValidators/index.js | |
parent | 69b0a27cbbd69ca019eb7db5f917b1dd06dc82cd (diff) | |
download | PeerTube-fc51fde048f2c3ce1dd3e85f5528335040bae894.tar.gz PeerTube-fc51fde048f2c3ce1dd3e85f5528335040bae894.tar.zst PeerTube-fc51fde048f2c3ce1dd3e85f5528335040bae894.zip |
reqValidators --> validators
Diffstat (limited to 'server/middlewares/reqValidators/index.js')
-rw-r--r-- | server/middlewares/reqValidators/index.js | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/server/middlewares/reqValidators/index.js b/server/middlewares/reqValidators/index.js deleted file mode 100644 index be68f6a29..000000000 --- a/server/middlewares/reqValidators/index.js +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | 'use strict' | ||
2 | |||
3 | const paginationReqValidators = require('./pagination') | ||
4 | const podsReqValidators = require('./pods') | ||
5 | const remoteReqValidators = require('./remote') | ||
6 | const sortReqValidators = require('./sort') | ||
7 | const videosReqValidators = require('./videos') | ||
8 | |||
9 | const reqValidators = { | ||
10 | pagination: paginationReqValidators, | ||
11 | pods: podsReqValidators, | ||
12 | remote: remoteReqValidators, | ||
13 | sort: sortReqValidators, | ||
14 | videos: videosReqValidators | ||
15 | } | ||
16 | |||
17 | // --------------------------------------------------------------------------- | ||
18 | |||
19 | module.exports = reqValidators | ||