Merge pull request #1769 from batara666/master
ldap.go: drop else on returned if block
This commit is contained in:
		| @@ -188,13 +188,13 @@ func parseScope(s string) (int, bool) { | ||||
| func (c *ldapConnector) userMatchers() []UserMatcher { | ||||
| 	if len(c.GroupSearch.UserMatchers) > 0 && c.GroupSearch.UserMatchers[0].UserAttr != "" { | ||||
| 		return c.GroupSearch.UserMatchers[:] | ||||
| 	} else { | ||||
| 		return []UserMatcher{ | ||||
| 			{ | ||||
| 				UserAttr:  c.GroupSearch.UserAttr, | ||||
| 				GroupAttr: c.GroupSearch.GroupAttr, | ||||
| 			}, | ||||
| 		} | ||||
| 	} | ||||
| 	 | ||||
| 	return []UserMatcher{ | ||||
| 		{ | ||||
| 			UserAttr:  c.GroupSearch.UserAttr, | ||||
| 			GroupAttr: c.GroupSearch.GroupAttr, | ||||
| 		}, | ||||
| 	} | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user