diff options
author | Robin Appelman <robin@icewind.nl> | 2018-11-27 16:54:00 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2018-11-29 16:31:34 +0100 |
commit | 2c1f6331a4d6a5d4663d57858f10faa851e33d82 (patch) | |
tree | 7c31041fbc31aceb81d01177ae1b307cbc887b97 /apps/files_external/lib/Lib | |
parent | 9f64149a38f1cd5f3942dd19720e335911d04f46 (diff) | |
download | nextcloud-server-2c1f6331a4d6a5d4663d57858f10faa851e33d82.tar.gz nextcloud-server-2c1f6331a4d6a5d4663d57858f10faa851e33d82.zip |
Add interface to allow storages from opting out of encryption
As opposed to hard-coding a list of excluded storages
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_external/lib/Lib')
-rw-r--r-- | apps/files_external/lib/Lib/Storage/OwnCloud.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_external/lib/Lib/Storage/OwnCloud.php b/apps/files_external/lib/Lib/Storage/OwnCloud.php index 3ee2b70ef22..04cd5ecf9af 100644 --- a/apps/files_external/lib/Lib/Storage/OwnCloud.php +++ b/apps/files_external/lib/Lib/Storage/OwnCloud.php @@ -25,6 +25,7 @@ */ namespace OCA\Files_External\Lib\Storage; +use OCP\Files\Storage\IDisableEncryptionStorage; use Sabre\DAV\Client; /** @@ -34,7 +35,7 @@ use Sabre\DAV\Client; * http://%host/%context/remote.php/webdav/%root * */ -class OwnCloud extends \OC\Files\Storage\DAV{ +class OwnCloud extends \OC\Files\Storage\DAV implements IDisableEncryptionStorage { const OC_URL_SUFFIX = 'remote.php/webdav'; public function __construct($params) { |