summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2017-04-26 12:37:48 +0200
committerMorris Jobke <hey@morrisjobke.de>2017-04-29 00:59:09 -0300
commit668fe7df51e097a762d9f03e0329a06d0751cd78 (patch)
tree5d4cb3e398e6cfee2122af5838db617a6c7c62a2 /lib/public
parent8f5f26c88d53b13a9ea7e5d9fe531decf0356879 (diff)
downloadnextcloud-server-668fe7df51e097a762d9f03e0329a06d0751cd78.tar.gz
nextcloud-server-668fe7df51e097a762d9f03e0329a06d0751cd78.zip
UserManager can now count disabled users
Users page takes advantage of that Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/IUserManager.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/public/IUserManager.php b/lib/public/IUserManager.php
index 1ec392dfd82..6c6724487de 100644
--- a/lib/public/IUserManager.php
+++ b/lib/public/IUserManager.php
@@ -160,6 +160,14 @@ interface IUserManager {
* @return int
* @since 11.0.0
*/
+ public function countDisabledUsers();
+
+ /**
+ * returns how many users have logged in once
+ *
+ * @return int
+ * @since 11.0.0
+ */
public function countSeenUsers();
/**