36 lines
818 B
Ruby
36 lines
818 B
Ruby
class UserAttributeModel
|
|
|
|
include Mongoid::Document
|
|
|
|
field :key
|
|
field :i18n_variable_id, :type => BSON::ObjectId, :index => true
|
|
|
|
embeds_many :attribute_models
|
|
|
|
after_update :destroy_attrs
|
|
|
|
# Update or create the attribute_model records
|
|
def attribute_models=(*attrs)
|
|
attrs[0].each do |attributes|
|
|
if attributes[:id].blank?
|
|
attribute_models.build(attributes)
|
|
else
|
|
attribute_model = attribute_models.detect {|a| a.id.to_s == attributes[:id].to_s }
|
|
attribute_model.update_attributes(attributes)
|
|
end
|
|
end
|
|
end
|
|
|
|
protected
|
|
|
|
# Destroy the i18n_variable for each attribute_models if marked to destroy
|
|
def destroy_attrs
|
|
attribute_models.each do |a|
|
|
if a.should_destroy?
|
|
a.destroy_i18n_variable
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|