diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-02-07 23:28:17 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-02-07 23:28:17 -0500 |
commit | 00b9508d8178bae016b2a25a81282dbe9ae0a9d2 (patch) | |
tree | 488397b9830b9ee56ff3eb4752958ea7a44eec04 /app/Auth/ReverseProxy.php | |
parent | 607d9dc79429cefa51dfe1739564922cc9a2ab89 (diff) |
Be able to disable the login form for specific users
Diffstat (limited to 'app/Auth/ReverseProxy.php')
-rw-r--r-- | app/Auth/ReverseProxy.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Auth/ReverseProxy.php b/app/Auth/ReverseProxy.php index b84550cf..6cd01b28 100644 --- a/app/Auth/ReverseProxy.php +++ b/app/Auth/ReverseProxy.php @@ -66,6 +66,7 @@ class ReverseProxy extends Base 'username' => $login, 'is_admin' => REVERSE_PROXY_DEFAULT_ADMIN === $login, 'is_ldap_user' => 1, + 'disable_login_form' => 1, )); } } |