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

Co-authored-by: Claire <claire.github-309c@sitedethib.com>
pull/2701/head
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
1 changed files with 1 additions and 1 deletions

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(