Use map instead of pluck (lodash)

pull/10/head
Chocobozzz 2016-03-18 16:34:50 +01:00
parent 2df82d42cb
commit a4c1575197
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
'use strict'
const express = require('express')
const pluck = require('lodash-node/compat/collection/pluck')
const map = require('lodash-node/modern/collection/map')
const middleware = require('../../../middlewares')
const secureMiddleware = middleware.secure
@ -43,7 +43,7 @@ function addRemoteVideos (req, res, next) {
function removeRemoteVideo (req, res, next) {
const url = req.body.signature.url
const magnetUris = pluck(req.body.data, 'magnetUri')
const magnetUris = map(req.body.data, 'magnetUri')
videos.removeRemotesOfByMagnetUris(url, magnetUris, function (err) {
if (err) return next(err)

View File

@ -13,8 +13,8 @@ const reqValidatorsVideos = {
}
function videosAdd (req, res, next) {
req.checkFiles('input_video[0].originalname', 'Should have an input video').notEmpty()
req.checkFiles('input_video[0].mimetype', 'Should have a correct mime type').matches(/video\/(webm)|(mp4)|(ogg)/i)
req.checkFiles('videofile[0].originalname', 'Should have an input video').notEmpty()
req.checkFiles('videofile[0].mimetype', 'Should have a correct mime type').matches(/video\/(webm)|(mp4)|(ogg)/i)
req.checkBody('name', 'Should have a name').isLength(1, 50)
req.checkBody('description', 'Should have a description').isLength(1, 250)