diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-07-11 17:04:57 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-07-11 17:05:55 +0200 |
commit | 075f16caac5236cb04c98ae7b3a989766d764bb3 (patch) | |
tree | 9a30024aa771735a28d83d9a166033b82dbcaf60 /server/helpers/custom-validators/remote | |
parent | 4e979c3e1b81f4762025d9db3052b1f70774b3bb (diff) | |
download | PeerTube-075f16caac5236cb04c98ae7b3a989766d764bb3.tar.gz PeerTube-075f16caac5236cb04c98ae7b3a989766d764bb3.tar.zst PeerTube-075f16caac5236cb04c98ae7b3a989766d764bb3.zip |
Remove "function" in favor of () => {}
Diffstat (limited to 'server/helpers/custom-validators/remote')
-rw-r--r-- | server/helpers/custom-validators/remote/videos.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/helpers/custom-validators/remote/videos.ts b/server/helpers/custom-validators/remote/videos.ts index e14673cb3..b33d8c9be 100644 --- a/server/helpers/custom-validators/remote/videos.ts +++ b/server/helpers/custom-validators/remote/videos.ts | |||
@@ -33,7 +33,7 @@ const ENDPOINT_ACTIONS = REQUEST_ENDPOINT_ACTIONS[REQUEST_ENDPOINTS.VIDEOS] | |||
33 | 33 | ||
34 | function isEachRemoteRequestVideosValid (requests: any[]) { | 34 | function isEachRemoteRequestVideosValid (requests: any[]) { |
35 | return isArray(requests) && | 35 | return isArray(requests) && |
36 | requests.every(function (request) { | 36 | requests.every(request => { |
37 | const video = request.data | 37 | const video = request.data |
38 | 38 | ||
39 | if (!video) return false | 39 | if (!video) return false |
@@ -63,7 +63,7 @@ function isEachRemoteRequestVideosValid (requests: any[]) { | |||
63 | 63 | ||
64 | function isEachRemoteRequestVideosQaduValid (requests: any[]) { | 64 | function isEachRemoteRequestVideosQaduValid (requests: any[]) { |
65 | return isArray(requests) && | 65 | return isArray(requests) && |
66 | requests.every(function (request) { | 66 | requests.every(request => { |
67 | const video = request.data | 67 | const video = request.data |
68 | 68 | ||
69 | if (!video) return false | 69 | if (!video) return false |
@@ -79,7 +79,7 @@ function isEachRemoteRequestVideosQaduValid (requests: any[]) { | |||
79 | 79 | ||
80 | function isEachRemoteRequestVideosEventsValid (requests: any[]) { | 80 | function isEachRemoteRequestVideosEventsValid (requests: any[]) { |
81 | return isArray(requests) && | 81 | return isArray(requests) && |
82 | requests.every(function (request) { | 82 | requests.every(request => { |
83 | const eventData = request.data | 83 | const eventData = request.data |
84 | 84 | ||
85 | if (!eventData) return false | 85 | if (!eventData) return false |