Fix local account search on LDAP login being case-sensitive (#30113)

Co-authored-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Râu Cao 2024-05-03 11:22:48 +02:00 committed by GitHub
parent d5444a2c6c
commit 9aa31be8d3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,7 +22,7 @@ module User::LdapAuthenticable
safe_username = safe_username.gsub(keys, replacement)
end
resource = joins(:account).find_by(accounts: { username: safe_username })
resource = joins(:account).merge(Account.where(Account.arel_table[:username].lower.eq safe_username.downcase)).take
if resource.blank?
resource = new(