aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/helpers/custom-validators/index.js')
-rw-r--r--server/helpers/custom-validators/index.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/server/helpers/custom-validators/index.js b/server/helpers/custom-validators/index.js
new file mode 100644
index 000000000..96b5b20b9
--- /dev/null
+++ b/server/helpers/custom-validators/index.js
@@ -0,0 +1,17 @@
1'use strict'
2
3const miscValidators = require('./misc')
4const podsValidators = require('./pods')
5const usersValidators = require('./users')
6const videosValidators = require('./videos')
7
8const validators = {
9 misc: miscValidators,
10 pods: podsValidators,
11 users: usersValidators,
12 videos: videosValidators
13}
14
15// ---------------------------------------------------------------------------
16
17module.exports = validators