summaryrefslogtreecommitdiffstats
path: root/lib/public/iconfig.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-12-05 16:34:54 +0100
committerMorris Jobke <hey@morrisjobke.de>2014-12-08 22:29:42 +0100
commit719008836d5254c6fa3975c5044d1c6a811bc124 (patch)
tree4ea184cf56e918603a86eaff5c2c07df68dc8dc9 /lib/public/iconfig.php
parent985b15f770eae72b53065de72ab081e6f5437499 (diff)
downloadnextcloud-server-719008836d5254c6fa3975c5044d1c6a811bc124.tar.gz
nextcloud-server-719008836d5254c6fa3975c5044d1c6a811bc124.zip
introduce deleteAllUserValues
Diffstat (limited to 'lib/public/iconfig.php')
-rw-r--r--lib/public/iconfig.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/public/iconfig.php b/lib/public/iconfig.php
index 671ae92234b..fe155cc61b0 100644
--- a/lib/public/iconfig.php
+++ b/lib/public/iconfig.php
@@ -141,4 +141,11 @@ interface IConfig {
* @param string $key the key under which the value is being stored
*/
public function deleteUserValue($userId, $appName, $key);
+
+ /**
+ * Delete all user values
+ *
+ * @param string $userId the userId of the user that we want to remove all values from
+ */
+ public function deleteAllUserValues($userId);
}