diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2012-09-01 22:36:27 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2012-09-16 23:58:21 -0500 |
commit | 9bfa13bb06d510b95f9af27bf12abf031f9af0a5 (patch) | |
tree | 59ac0ae191f1f0350d73d477841c6c2bf35cff59 /activemodel/test/models | |
parent | 91bcebbdef0e31d38622785a064d023272f712db (diff) | |
download | rails-9bfa13bb06d510b95f9af27bf12abf031f9af0a5.tar.gz rails-9bfa13bb06d510b95f9af27bf12abf031f9af0a5.tar.bz2 rails-9bfa13bb06d510b95f9af27bf12abf031f9af0a5.zip |
attr_accessible and attr_protected raise an exception pointing to use plugin or new protection model
Diffstat (limited to 'activemodel/test/models')
-rw-r--r-- | activemodel/test/models/project.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/activemodel/test/models/project.rb b/activemodel/test/models/project.rb new file mode 100644 index 0000000000..581b6dc0b3 --- /dev/null +++ b/activemodel/test/models/project.rb @@ -0,0 +1,3 @@ +class Project + include ActiveModel::DeprecatedMassAssignmentSecurity +end |