We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What if I want to get a bunch of stuff back from my LDAP query?
Currently, I have to do:
self.email = Devise::LDAP::Adapter.get_ldap_param(self.username,"mail").first.to_s self.first_name = Devise::LDAP::Adapter.get_ldap_param(self.username,"givenName").first.to_s self.last_name = Devise::LDAP::Adapter.get_ldap_param(self.username,"sn").first.to_s ........etc........
Maybe I'm missing something, but it seems we should be able to return an array? Please advise!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What if I want to get a bunch of stuff back from my LDAP query?
Currently, I have to do:
Maybe I'm missing something, but it seems we should be able to return an array? Please advise!
The text was updated successfully, but these errors were encountered: