Displaying 2 results from an estimated 2 matches for "cusotmer".
2012 Jul 05
1
LDAP.conf filter issue
All,
We are trying to use the user_filter options to limit authentication to a single user group. The cusotmer has security rules that they want to only have users belonging to a group to have access. Sample we have tried.
auth_bind = yes
auth_bind_userdn = EXAMPLE\%n
base = /
hosts = example.test.com
ldap_version = 3
user_filter =
(&(sAMAccountName=)(memberOf=CN=LR3BCC-DL,OU=Autonomy,OU=Excha...
2007 May 28
5
CTI in ActiveRecord
....column :name
t.column :address
end
create_table :customer |t| do
t.column :person_id
t.column :cpf
end
create_table :employee |t| do
t.column :person_id
t.column :wage
end
class Person < ActiveRecord::Base
end
clas Customer < Person
end
class Employee < Person
end
Cusotmer.name
Customer.cpf
Employee.name
Employee.wage
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rub...