diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2015-05-13 14:39:27 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2015-05-13 19:06:23 +0200 |
commit | ccbefb6e7506f5ad7cc23c9ae50971f8ea18b463 (patch) | |
tree | 908e3dfbc9c21a7e5135167c9976d25e0f56be84 /lib/public | |
parent | 5941e826b8e6005de08fdcb777efb3def5ca8101 (diff) | |
download | nextcloud-server-ccbefb6e7506f5ad7cc23c9ae50971f8ea18b463.tar.gz nextcloud-server-ccbefb6e7506f5ad7cc23c9ae50971f8ea18b463.zip |
delete all file keys doesn't need the encryption module as parameter; implement rmdir; getFileKeyDir should also work for part files and complete directories
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/encryption/keys/istorage.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/public/encryption/keys/istorage.php b/lib/public/encryption/keys/istorage.php index 752c073375d..17677814107 100644 --- a/lib/public/encryption/keys/istorage.php +++ b/lib/public/encryption/keys/istorage.php @@ -129,12 +129,11 @@ interface IStorage { * delete all file keys for a given file * * @param string $path to the file - * @param string $encryptionModuleId * * @return boolean False when the keys could not be deleted * @since 8.1.0 */ - public function deleteAllFileKeys($path, $encryptionModuleId); + public function deleteAllFileKeys($path); /** * delete system-wide encryption keys not related to a specific user, |