refactor(rest) files.namesAll -> data

This commit is contained in:
coderaiser 2014-11-10 05:56:35 -05:00
parent 0dd92d5826
commit 2c21d5c05b

View file

@ -321,9 +321,9 @@
files.from = mellow.convertPath(files.from);
files.to = mellow.convertPath(files.to);
files.namesAll = Util.slice(files.names);
data = Util.slice(files.names);
copyFiles(files, flop.copy, function(error) {
var msg = formatMsg('copy', files.namesAll);
var msg = formatMsg('copy', data);
callback(error, msg);
});