1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Refactor readonly attributes conditional

This commit is contained in:
Carlos Antonio da Silva 2011-12-04 01:05:29 -02:00
parent 5dfdc69ef9
commit 4e836e4de9

View file

@ -2028,7 +2028,7 @@ MSG
attribute_names.each do |name|
if (column = column_for_attribute(name)) && (include_primary_key || !column.primary)
if include_readonly_attributes || (!include_readonly_attributes && !self.class.readonly_attributes.include?(name))
if include_readonly_attributes || !self.class.readonly_attributes.include?(name)
value = if klass.serialized_attributes.include?(name)
@attributes[name].serialized_value
@ -2043,6 +2043,7 @@ MSG
end
end
end
attrs
end