diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-08-21 10:08:40 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-08-21 10:41:04 +0200 |
commit | d57d6f2605f4ac4a81f9a8594433bb7b65f108b9 (patch) | |
tree | 4fd2c1a4930df841c16fad5858f4a93330add715 /server/helpers/custom-validators/misc.js | |
parent | 6c1a098b4107cc923631d8cd94ed54c184fcec7d (diff) | |
download | PeerTube-d57d6f2605f4ac4a81f9a8594433bb7b65f108b9.tar.gz PeerTube-d57d6f2605f4ac4a81f9a8594433bb7b65f108b9.tar.zst PeerTube-d57d6f2605f4ac4a81f9a8594433bb7b65f108b9.zip |
Server: fix makefriends validation and tests
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 |