summaryrefslogtreecommitdiffstats
path: root/cmd/admin_auth_ldap.go
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2020-01-20 03:47:39 +0000
committerLunny Xiao <xiaolunwen@gmail.com>2020-01-20 11:47:39 +0800
commitc5014a7f2c4a263818269216d16d6f21b008cd17 (patch)
tree42423c1aa2ac688b4694e36bdc450d47d4276299 /cmd/admin_auth_ldap.go
parent54c2854cd2c4084ead621fa42565100338ff3467 (diff)
downloadgitea-c5014a7f2c4a263818269216d16d6f21b008cd17.tar.gz
gitea-c5014a7f2c4a263818269216d16d6f21b008cd17.zip
Add option to prevent LDAP from deactivating everything on empty search (#9879)
* Add option to prevent LDAP from deactivating everything on empty search * Update options/locale/locale_en-US.ini Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'cmd/admin_auth_ldap.go')
-rw-r--r--cmd/admin_auth_ldap.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/cmd/admin_auth_ldap.go b/cmd/admin_auth_ldap.go
index cce3aa894f..e869686cbd 100644
--- a/cmd/admin_auth_ldap.go
+++ b/cmd/admin_auth_ldap.go
@@ -61,6 +61,10 @@ var (
Name: "admin-filter",
Usage: "An LDAP filter specifying if a user should be given administrator privileges.",
},
+ cli.BoolFlag{
+ Name: "allow-deactivate-all",
+ Usage: "Allow empty search results to deactivate all users.",
+ },
cli.StringFlag{
Name: "username-attribute",
Usage: "The attribute of the user’s LDAP record containing the user name.",
@@ -231,6 +235,9 @@ func parseLdapConfig(c *cli.Context, config *models.LDAPConfig) error {
if c.IsSet("admin-filter") {
config.Source.AdminFilter = c.String("admin-filter")
}
+ if c.IsSet("allow-deactivate-all") {
+ config.Source.AllowDeactivateAll = c.Bool("allow-deactivate-all")
+ }
return nil
}