aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators/misc.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/helpers/custom-validators/misc.js')
-rw-r--r--server/helpers/custom-validators/misc.js11
1 files changed, 1 insertions, 10 deletions
diff --git a/server/helpers/custom-validators/misc.js b/server/helpers/custom-validators/misc.js
index 13904ea1b..782ae3dee 100644
--- a/server/helpers/custom-validators/misc.js
+++ b/server/helpers/custom-validators/misc.js
@@ -1,11 +1,8 @@
1'use strict' 1'use strict'
2 2
3const validator = require('express-validator').validator
4
5const miscValidators = { 3const miscValidators = {
6 exists: exists, 4 exists: exists,
7 isArray: isArray, 5 isArray: isArray
8 isEachUrl: isEachUrl
9} 6}
10 7
11function exists (value) { 8function exists (value) {
@@ -16,12 +13,6 @@ function isArray (value) {
16 return Array.isArray(value) 13 return Array.isArray(value)
17} 14}
18 15
19function isEachUrl (urls) {
20 return urls.every(function (url) {
21 return validator.isURL(url)
22 })
23}
24
25// --------------------------------------------------------------------------- 16// ---------------------------------------------------------------------------
26 17
27module.exports = miscValidators 18module.exports = miscValidators