diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-09-28 16:13:52 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-10-08 14:22:17 +0200 |
commit | 12ac3a800df10cada530c57659bd9fdbc770079b (patch) | |
tree | e01feff56234859aa69a92e1785f35393fff4d95 /lib/public | |
parent | 6585eaa5df7a4481638a334926743d496f243d65 (diff) | |
download | nextcloud-server-12ac3a800df10cada530c57659bd9fdbc770079b.tar.gz nextcloud-server-12ac3a800df10cada530c57659bd9fdbc770079b.zip |
Expose getAppKeys trough \OCP\IConfig
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 |