Remove a too strict check from admin interface
This commit is contained in:
parent
d26f5670bd
commit
216e175eaf
1 changed files with 0 additions and 2 deletions
2
admin.go
2
admin.go
|
@ -646,8 +646,6 @@ func handleAdminCreate(w http.ResponseWriter, r *http.Request) {
|
||||||
data.Error = "Invalid identifier type"
|
data.Error = "Invalid identifier type"
|
||||||
} else if len(data.IdValue) == 0 {
|
} else if len(data.IdValue) == 0 {
|
||||||
data.Error = "No identifier specified"
|
data.Error = "No identifier specified"
|
||||||
} else if match, err := regexp.MatchString("^[\\d\\w_-]+$", data.IdValue); err != nil || !match {
|
|
||||||
data.Error = "Invalid identifier"
|
|
||||||
} else {
|
} else {
|
||||||
dn := data.IdType + "=" + data.IdValue + "," + super_dn
|
dn := data.IdType + "=" + data.IdValue + "," + super_dn
|
||||||
req := ldap.NewAddRequest(dn, nil)
|
req := ldap.NewAddRequest(dn, nil)
|
||||||
|
|
Loading…
Reference in a new issue