diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-10-09 18:18:36 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-10-09 18:18:36 +0200 |
commit | 9dea79e341fcc28e6a4e1d8e88f6a7f6ec1bf3fb (patch) | |
tree | ceb66a37bae3611184e861872eed2e11ffe3ccd5 /lib/public | |
parent | c82e310e202265dcc9ce78e1a50639ae5ee03c30 (diff) | |
parent | 26e242a8a4480f813d6d1ad15f3bf5c2f5025b48 (diff) | |
download | nextcloud-server-9dea79e341fcc28e6a4e1d8e88f6a7f6ec1bf3fb.tar.gz nextcloud-server-9dea79e341fcc28e6a4e1d8e88f6a7f6ec1bf3fb.zip |
Merge pull request #11305 from owncloud/ext-updateetagonmount
Update etag of parent dir when adding/removing ext storage mount points
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/iconfig.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/public/iconfig.php b/lib/public/iconfig.php index 755da09ee6b..404cf030dee 100644 --- a/lib/public/iconfig.php +++ b/lib/public/iconfig.php @@ -58,6 +58,13 @@ interface IConfig { */ public function deleteSystemValue($key); + /** + * Get all keys stored for an app + * + * @param string $appName the appName that we stored the value under + * @return string[] the keys stored for the app + */ + public function getAppKeys($appName); /** * Writes a new app wide value |