We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8497353 + 5f675ce commit 1a7b2a9Copy full SHA for 1a7b2a9
2 files changed
.gitignore
@@ -18,3 +18,4 @@ resources/dev
18
.bundle
19
.vagrant
20
Vagrantfile
21
+Gemfile.lock
lib/casserver/authenticators/sql.rb
@@ -133,7 +133,7 @@ def raise_if_not_configured
133
def extract_extra user
134
@extra_attributes = {}
135
extra_attributes_to_extract.each do |col|
136
- @extra_attributes[col] = user.send(col)
+ @extra_attributes[col] = user[col.to_sym]
137
end
138
139
0 commit comments