Skip to content
Snippets Groups Projects
Commit 6e9537b6 authored by Robert C. Sheets's avatar Robert C. Sheets
Browse files

Add two missing commas to example code

parent 77e842e9
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -11,8 +11,8 @@ Use the LDAP strategy as a middleware in your application:
:method => :plain,
:base => 'dc=intridea, dc=com',
:uid => 'sAMAccountName',
:name_proc => Proc.new {|name| name.gsub(/@.*$/,'')}
:bind_dn => 'default_bind_dn'
:name_proc => Proc.new {|name| name.gsub(/@.*$/,'')},
:bind_dn => 'default_bind_dn',
:password => 'password'
 
All of the listed options are required, with the exception of :title, :name_proc, :bind_dn, and :password.
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment