diff options
Diffstat (limited to 'server/helpers/custom-validators/misc.js')
-rw-r--r-- | server/helpers/custom-validators/misc.js | 11 |
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 | ||
3 | const validator = require('express-validator').validator | ||
4 | |||
5 | const miscValidators = { | 3 | const miscValidators = { |
6 | exists: exists, | 4 | exists: exists, |
7 | isArray: isArray, | 5 | isArray: isArray |
8 | isEachUrl: isEachUrl | ||
9 | } | 6 | } |
10 | 7 | ||
11 | function exists (value) { | 8 | function exists (value) { |
@@ -16,12 +13,6 @@ function isArray (value) { | |||
16 | return Array.isArray(value) | 13 | return Array.isArray(value) |
17 | } | 14 | } |
18 | 15 | ||
19 | function isEachUrl (urls) { | ||
20 | return urls.every(function (url) { | ||
21 | return validator.isURL(url) | ||
22 | }) | ||
23 | } | ||
24 | |||
25 | // --------------------------------------------------------------------------- | 16 | // --------------------------------------------------------------------------- |
26 | 17 | ||
27 | module.exports = miscValidators | 18 | module.exports = miscValidators |