mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
4b66aab00f
Signed-off-by: José Valim <jose.valim@gmail.com>
57 lines
No EOL
1.1 KiB
Ruby
57 lines
No EOL
1.1 KiB
Ruby
class User
|
|
include ActiveModel::MassAssignmentSecurity
|
|
attr_protected :admin
|
|
|
|
public :sanitize_for_mass_assignment
|
|
end
|
|
|
|
class Person
|
|
include ActiveModel::MassAssignmentSecurity
|
|
attr_accessible :name, :email
|
|
|
|
public :sanitize_for_mass_assignment
|
|
end
|
|
|
|
class Firm
|
|
include ActiveModel::MassAssignmentSecurity
|
|
|
|
public :sanitize_for_mass_assignment
|
|
|
|
def self.attributes_protected_by_default
|
|
["type"]
|
|
end
|
|
end
|
|
|
|
class Task
|
|
include ActiveModel::MassAssignmentSecurity
|
|
attr_protected :starting
|
|
|
|
public :sanitize_for_mass_assignment
|
|
end
|
|
|
|
class LoosePerson
|
|
include ActiveModel::MassAssignmentSecurity
|
|
attr_protected :credit_rating, :administrator
|
|
end
|
|
|
|
class LooseDescendant < LoosePerson
|
|
attr_protected :phone_number
|
|
end
|
|
|
|
class LooseDescendantSecond< LoosePerson
|
|
attr_protected :phone_number
|
|
attr_protected :name
|
|
end
|
|
|
|
class TightPerson
|
|
include ActiveModel::MassAssignmentSecurity
|
|
attr_accessible :name, :address
|
|
|
|
def self.attributes_protected_by_default
|
|
["mobile_number"]
|
|
end
|
|
end
|
|
|
|
class TightDescendant < TightPerson
|
|
attr_accessible :phone_number
|
|
end |