Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/user_sql.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Łojewski <marcin.lojewski@mlojewski.me>2019-10-08 20:44:23 +0300
committerMarcin Łojewski <marcin.lojewski@mlojewski.me>2019-10-08 20:44:23 +0300
commit1283fd68fc2063dc934c3ac365c2c3dc048fc719 (patch)
treefc2141fe9f371febd3031654f65a38a7998ddf5b /lib/Constant
parentce09d8e5e12a0d16556e6d7e6baeab8334d81e9d (diff)
issue#95 - Do not include users which are disabled
Diffstat (limited to 'lib/Constant')
-rw-r--r--lib/Constant/DB.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Constant/DB.php b/lib/Constant/DB.php
index b05fc0f..0442b13 100644
--- a/lib/Constant/DB.php
+++ b/lib/Constant/DB.php
@@ -47,6 +47,7 @@ final class DB
const USER_ACTIVE_COLUMN = "db.table.user.column.active";
const USER_AVATAR_COLUMN = "db.table.user.column.avatar";
+ const USER_DISABLED_COLUMN = "db.table.user.column.disabled";
const USER_EMAIL_COLUMN = "db.table.user.column.email";
const USER_HOME_COLUMN = "db.table.user.column.home";
const USER_NAME_COLUMN = "db.table.user.column.name";