summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2023-08-14 15:50:05 +0200
committerRobin Appelman <robin@icewind.nl>2023-09-04 14:09:41 +0200
commit8511fb91caa8bd1dcf753fd67141ff4188ae8f64 (patch)
treeb14e3b8ccb23e0fb0ec6ba8ec9dda122b1ba419b /apps/files_sharing
parent09fd427df1e3cb6b1c41b7b1efabcd15b9da4118 (diff)
downloadnextcloud-server-8511fb91caa8bd1dcf753fd67141ff4188ae8f64.tar.gz
nextcloud-server-8511fb91caa8bd1dcf753fd67141ff4188ae8f64.zip
more share permission logic to storage wrapper
this way we only have to determine the share permissions once Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_sharing')
-rw-r--r--apps/files_sharing/tests/ApiTest.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files_sharing/tests/ApiTest.php b/apps/files_sharing/tests/ApiTest.php
index d7661297e9e..3484bb29d94 100644
--- a/apps/files_sharing/tests/ApiTest.php
+++ b/apps/files_sharing/tests/ApiTest.php
@@ -36,6 +36,8 @@
namespace OCA\Files_Sharing\Tests;
use OC\Files\Cache\Scanner;
+use OC\Files\Filesystem;
+use OC\Files\SetupManager;
use OCA\Files_Sharing\Controller\ShareAPIController;
use OCP\App\IAppManager;
use OCP\AppFramework\OCS\OCSBadRequestException;
@@ -74,6 +76,8 @@ class ApiTest extends TestCase {
\OC::$server->getConfig()->setAppValue('core', 'shareapi_exclude_groups', 'no');
\OC::$server->getConfig()->setAppValue('core', 'shareapi_expire_after_n_days', '7');
+ Filesystem::getLoader()->removeStorageWrapper('sharing_mask');
+
$this->folder = self::TEST_FOLDER_NAME;
$this->subfolder = '/subfolder_share_api_test';
$this->subsubfolder = '/subsubfolder_share_api_test';