Displaying 1 result from an estimated 1 matches for "attr_method".
Did you mean:
attr_methods
2006 Mar 06
1
ActiveLDAP handle uppercase attributes?
Does anyone know how to assign values to LDAP objects with upper cased
attributes? For example, you can normally do:
user = User.new(@user)
user.sn = params[:user][attr]
But what about the case where there is an attribute that looks like
OXTimeZone? You clearly can''t do:
user = User.new(@user)
user.OXTimeZone = params[:user][attr]
I''m trying to