diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-02-13 20:20:00 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-02-13 20:28:52 +0100 |
commit | d5397d813cd731b5bf8ac4b7c193ac39d704af6e (patch) | |
tree | 9de3d45f938bdb755ac158933aef994cb58e257e /apps/files/tests/js/fileactionsSpec.js | |
parent | 30662fa7acbe7a367ee8b0c07afabf425a10ef06 (diff) | |
download | nextcloud-server-d5397d813cd731b5bf8ac4b7c193ac39d704af6e.tar.gz nextcloud-server-d5397d813cd731b5bf8ac4b7c193ac39d704af6e.zip |
Do not send file list for select all on Download/delete
- When all files are selected, do not send the whole file list
- Download will trigger download for the parent folder, also works
with root
- Delete will send "allfiles" to the server that will find the file
list or the passed directory by itself
Diffstat (limited to 'apps/files/tests/js/fileactionsSpec.js')
-rw-r--r-- | apps/files/tests/js/fileactionsSpec.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/tests/js/fileactionsSpec.js b/apps/files/tests/js/fileactionsSpec.js index 8bbc1d3d141..ef7ddcb874a 100644 --- a/apps/files/tests/js/fileactionsSpec.js +++ b/apps/files/tests/js/fileactionsSpec.js @@ -69,7 +69,7 @@ describe('FileActions tests', function() { $tr.find('.action[data-action=Download]').click(); expect(redirectStub.calledOnce).toEqual(true); - expect(redirectStub.getCall(0).args[0]).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?files=test%20download%20File.txt&dir=%2Fsubdir&download'); + expect(redirectStub.getCall(0).args[0]).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=test%20download%20File.txt'); redirectStub.restore(); }); }); |