Hi,
I have a model (Person) with an attr_accessor defined variable
(copy_employer_address) which is used as a field in a form (checkbox/
boolean).
When the form is submitted the value of the field is there in params
but does not appear to be available to my model instance after a mass
assignment (Person.new(params[:person] or
@person.update_attributes(params[:person]).
I am trying to access the variable from within another instance method
using self.copy_employer_address.
I do not have attr_accesssible on the model directly but the
acts_as_ferret and acts_as_taggable macros are present.
Is what I am trying to do valid, i.e. should
“attr_accessor :variable_name” allow “self.variable_name” when mass
assigning from params ?
Thanks
James