2014-04-01 07:10:21 +00:00
|
|
|
class SubPart
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
|
2014-04-30 10:57:09 +00:00
|
|
|
field :module
|
2014-05-22 11:19:25 +00:00
|
|
|
field :title, localize: true
|
2014-04-30 10:57:09 +00:00
|
|
|
field :widget_type
|
|
|
|
field :widget_method
|
|
|
|
field :kind, default: "none"
|
2014-05-22 11:19:25 +00:00
|
|
|
field :content, localize: true
|
|
|
|
field :data_count, type: Integer, default: 10
|
|
|
|
field :categories, type: Array, :default => []
|
2015-04-22 14:51:30 +00:00
|
|
|
field :tags, type: Array, :default => []
|
2014-05-22 11:19:25 +00:00
|
|
|
field :custom_string_field, type: String
|
|
|
|
field :custom_array_field, type: Array, :default => []
|
2014-04-01 07:10:21 +00:00
|
|
|
|
|
|
|
belongs_to :page_part
|
2014-05-29 10:32:27 +00:00
|
|
|
belongs_to :mobile_page_part
|
2015-03-23 07:46:14 +00:00
|
|
|
|
2015-04-10 08:33:47 +00:00
|
|
|
# after_save :clear_cache
|
|
|
|
# after_destroy :clear_cache
|
2015-03-23 07:46:14 +00:00
|
|
|
|
|
|
|
def clear_cache
|
|
|
|
Rails.cache.delete_matched( /#{self.id.to_s}/ )
|
|
|
|
end
|
2014-04-01 07:10:21 +00:00
|
|
|
end
|