Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-12-17 17:30:13 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2015-12-17 17:30:13 +0300
commit1285b780860fe782efe845f364e590a8e47bb564 (patch)
tree420b1301315cba0c6afee0be7a77f4171254b3f8 /apps
parent38f4407761ea2d5cb2562518e207a43622f40b30 (diff)
parent064dcc079d8dba1754cf80fff66941f31d439002 (diff)
Merge pull request #21200 from owncloud/files-authorizationheader
Use Authorization headers for public webdav in web UI
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/tests/js/publicAppSpec.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_sharing/tests/js/publicAppSpec.js b/apps/files_sharing/tests/js/publicAppSpec.js
index 74f008025e1..2aaf758f3e3 100644
--- a/apps/files_sharing/tests/js/publicAppSpec.js
+++ b/apps/files_sharing/tests/js/publicAppSpec.js
@@ -89,7 +89,8 @@ describe('OCA.Sharing.PublicApp tests', function() {
it('Uses public webdav endpoint', function() {
expect(fakeServer.requests.length).toEqual(1);
expect(fakeServer.requests[0].method).toEqual('PROPFIND');
- expect(fakeServer.requests[0].url).toEqual('https://sh4tok@example.com/owncloud/public.php/webdav/subdir');
+ expect(fakeServer.requests[0].url).toEqual('https://example.com/owncloud/public.php/webdav/subdir');
+ expect(fakeServer.requests[0].requestHeaders.Authorization).toEqual('Basic c2g0dG9rOm51bGw=');
});
describe('Download Url', function() {