diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-11-07 16:29:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-07 16:29:05 +0100 |
commit | 7940a79a410c815915f25d8d36ec08afb27b610b (patch) | |
tree | 9683ee45aeed966eaab75ca6f965184c3dbd89e9 /apps/files_sharing/tests | |
parent | ab3543380c96b0beb5de4db977bbc12894379288 (diff) | |
parent | b2cc2d602396b7456a59a44f415669dd8fca0e05 (diff) | |
download | nextcloud-server-7940a79a410c815915f25d8d36ec08afb27b610b.tar.gz nextcloud-server-7940a79a410c815915f25d8d36ec08afb27b610b.zip |
Merge pull request #12324 from nextcloud/add-password-response-parameter-for-returning-the-password-of-link-shares
Add "password" parameter to the response data of link shares
Diffstat (limited to 'apps/files_sharing/tests')
-rw-r--r-- | apps/files_sharing/tests/Controller/ShareAPIControllerTest.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/files_sharing/tests/Controller/ShareAPIControllerTest.php b/apps/files_sharing/tests/Controller/ShareAPIControllerTest.php index efc252d49d7..67130c01eb5 100644 --- a/apps/files_sharing/tests/Controller/ShareAPIControllerTest.php +++ b/apps/files_sharing/tests/Controller/ShareAPIControllerTest.php @@ -428,6 +428,7 @@ class ShareAPIControllerTest extends TestCase { $expected = [ 'id' => 101, 'share_type' => \OCP\Share::SHARE_TYPE_LINK, + 'password' => 'password', 'share_with' => 'password', 'share_with_displayname' => 'password', 'send_password_by_talk' => false, @@ -2687,6 +2688,7 @@ class ShareAPIControllerTest extends TestCase { 'file_source' => 3, 'file_parent' => 1, 'file_target' => 'myTarget', + 'password' => 'mypassword', 'share_with' => 'mypassword', 'share_with_displayname' => 'mypassword', 'send_password_by_talk' => false, @@ -2736,6 +2738,7 @@ class ShareAPIControllerTest extends TestCase { 'file_source' => 3, 'file_parent' => 1, 'file_target' => 'myTarget', + 'password' => 'mypassword', 'share_with' => 'mypassword', 'share_with_displayname' => 'mypassword', 'send_password_by_talk' => true, |