diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2025-04-29 16:25:02 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2025-04-29 21:25:47 +0200 |
commit | bcc8de0c9ddfa9d16f1941ab8b53db581de7702b (patch) | |
tree | e8bb57a45117ba495b89d20fa60f915e9facae1e /apps/files_sharing/tests/Controller/ShareControllerTest.php | |
parent | f26dc79480e75b0dc2f80c9dfc08fada0f6beb68 (diff) | |
download | nextcloud-server-bcc8de0c9ddfa9d16f1941ab8b53db581de7702b.tar.gz nextcloud-server-bcc8de0c9ddfa9d16f1941ab8b53db581de7702b.zip |
fix(files_sharing): bring back owner and ownerDisplayName initial statefix/public-displayname-owner
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/tests/Controller/ShareControllerTest.php')
-rw-r--r-- | apps/files_sharing/tests/Controller/ShareControllerTest.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files_sharing/tests/Controller/ShareControllerTest.php b/apps/files_sharing/tests/Controller/ShareControllerTest.php index 0ed43da52cd..58cbb4e0b82 100644 --- a/apps/files_sharing/tests/Controller/ShareControllerTest.php +++ b/apps/files_sharing/tests/Controller/ShareControllerTest.php @@ -330,6 +330,8 @@ class ShareControllerTest extends \Test\TestCase { 'filename' => $filename, 'view' => $view, 'fileId' => 111, + 'owner' => 'ownerUID', + 'ownerDisplayName' => 'ownerDisplay', ]; $response = $this->shareController->showShare(); @@ -470,6 +472,8 @@ class ShareControllerTest extends \Test\TestCase { 'filename' => $filename, 'view' => 'public-file-drop', 'disclaimer' => 'My disclaimer text', + 'owner' => 'ownerUID', + 'ownerDisplayName' => 'ownerDisplay', ]; $response = $this->shareController->showShare(); |