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>2018-10-28 19:40:12 +0300
committerMarcin Łojewski <marcin.lojewski@mlojewski.me>2018-10-28 20:19:58 +0300
commit09050966128380e7d429325c241c1ef95b0eb756 (patch)
treecde8f865d6d64b72cecca0c1161cffb53366f5fc /lib/Constant
parent9ab6df0f7699b8b5148bee10fa982b20f64eb9c3 (diff)
Issue#74 Case (in)sensitive login
Diffstat (limited to 'lib/Constant')
-rw-r--r--lib/Constant/Opt.php1
-rw-r--r--lib/Constant/Query.php1
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/Constant/Opt.php b/lib/Constant/Opt.php
index fe6449a..75b0da6 100644
--- a/lib/Constant/Opt.php
+++ b/lib/Constant/Opt.php
@@ -28,6 +28,7 @@ namespace OCA\UserSQL\Constant;
*/
final class Opt
{
+ const CASE_INSENSITIVE_USERNAME = "opt.case_insensitive_username";
const CRYPTO_CLASS = "opt.crypto_class";
const EMAIL_SYNC = "opt.email_sync";
const HOME_LOCATION = "opt.home_location";
diff --git a/lib/Constant/Query.php b/lib/Constant/Query.php
index 35eceb7..8cbff2c 100644
--- a/lib/Constant/Query.php
+++ b/lib/Constant/Query.php
@@ -35,6 +35,7 @@ final class Query
const FIND_GROUP_USERS = "find_group_users";
const FIND_GROUPS = "find_groups";
const FIND_USER = "find_user";
+ const FIND_USER_CASE_INSENSITIVE = "find_user_case_insensitive";
const FIND_USER_GROUPS = "find_user_groups";
const FIND_USERS = "find_users";
const UPDATE_DISPLAY_NAME = "update_display_name";