Can one vary which attributes are available for mass assignment ? In
other words, if I had this statement in a model
attr_accessible :a, , :c
is there some simple way to later add :d or remove :c?
Can one vary which attributes are available for mass assignment ? In
other words, if I had this statement in a model
attr_accessible :a, , :c
is there some simple way to later add :d or remove :c?
James B. wrote:
Can one vary which attributes are available for mass assignment ? In
other words, if I had this statement in a modelattr_accessible :a, , :c
is there some simple way to later add :d
Model.attr_accessible :d
or remove :c?
I’m not sure.
Marnen Laibow-Koser
http://www.marnen.org
[email protected]
On Jan 28, 6:28 pm, Marnen Laibow-Koser [email protected] wrote:
is there some simple way to later add :d
Model.attr_accessible :d
or remove :c?
I’m not sure.
So is attr_accessible is a one-way trip? Is is the case that once an
attribute is added to the attr_accessible collection then there is no
way to remove it? I have already discovered that one may not user
attr_protected if one has already called attr_accessible.
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs