diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-07-06 16:11:15 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-07-11 13:52:28 +0200 |
commit | b0418f730f183e74df155adf1327f8489bbc56bf (patch) | |
tree | 6c2be45c9a4708fb84a345419311a76e99bbd071 /apps/files/tests | |
parent | a9f7e66d3dbdd7740aa7f308665d576d3a491378 (diff) | |
download | nextcloud-server-b0418f730f183e74df155adf1327f8489bbc56bf.tar.gz nextcloud-server-b0418f730f183e74df155adf1327f8489bbc56bf.zip |
fix: drop legacy sharing files
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/tests')
-rw-r--r-- | apps/files/tests/Controller/ViewControllerTest.php | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/apps/files/tests/Controller/ViewControllerTest.php b/apps/files/tests/Controller/ViewControllerTest.php index daafb92e322..05f35f32f0a 100644 --- a/apps/files/tests/Controller/ViewControllerTest.php +++ b/apps/files/tests/Controller/ViewControllerTest.php @@ -212,56 +212,6 @@ class ViewControllerTest extends TestCase { 'expanded' => false, 'unread' => 0, ], - 'shareoverview' => [ - 'id' => 'shareoverview', - 'appname' => 'files_sharing', - 'script' => 'list.php', - 'order' => 18, - 'name' => \OC::$server->getL10N('files_sharing')->t('Shares'), - 'classes' => 'collapsible', - 'sublist' => [ - [ - 'id' => 'sharingout', - 'appname' => 'files_sharing', - 'script' => 'list.php', - 'order' => 16, - 'name' => \OC::$server->getL10N('files_sharing')->t('Shared with others'), - ], - [ - 'id' => 'sharingin', - 'appname' => 'files_sharing', - 'script' => 'list.php', - 'order' => 15, - 'name' => \OC::$server->getL10N('files_sharing')->t('Shared with you'), - ], - [ - 'id' => 'sharinglinks', - 'appname' => 'files_sharing', - 'script' => 'list.php', - 'order' => 17, - 'name' => \OC::$server->getL10N('files_sharing')->t('Shared by link', []), - ], - [ - 'id' => 'deletedshares', - 'appname' => 'files_sharing', - 'script' => 'list.php', - 'order' => 19, - 'name' => \OC::$server->getL10N('files_sharing')->t('Deleted shares'), - ], - [ - 'id' => 'pendingshares', - 'appname' => 'files_sharing', - 'script' => 'list.php', - 'order' => 19, - 'name' => \OC::$server->getL10N('files_sharing')->t('Pending shares'), - ], - ], - 'active' => false, - 'icon' => '', - 'type' => 'link', - 'expanded' => false, - 'unread' => 0, - ] ]); $expected = new Http\TemplateResponse( @@ -292,30 +242,6 @@ class ViewControllerTest extends TestCase { 'id' => 'systemtagsfilter', 'content' => null, ], - 'sharingout' => [ - 'id' => 'sharingout', - 'content' => null, - ], - 'sharingin' => [ - 'id' => 'sharingin', - 'content' => null, - ], - 'sharinglinks' => [ - 'id' => 'sharinglinks', - 'content' => null, - ], - 'deletedshares' => [ - 'id' => 'deletedshares', - 'content' => null, - ], - 'pendingshares' => [ - 'id' => 'pendingshares', - 'content' => null - ], - 'shareoverview' => [ - 'id' => 'shareoverview', - 'content' => null, - ], ], 'hiddenFields' => [], 'showgridview' => null |