2021-04-10 16:28:00 +00:00
|
|
|
# encoding: utf-8
|
2025-05-07 14:25:46 +00:00
|
|
|
class CurationPostCarouselImage
|
2021-04-10 16:28:00 +00:00
|
|
|
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
|
|
|
|
mount_uploader :file, AssetUploader
|
|
|
|
|
|
|
|
field :description, localize: true
|
|
|
|
|
2025-05-07 14:25:46 +00:00
|
|
|
belongs_to :curation_post
|
2021-04-10 16:28:00 +00:00
|
|
|
def description_text
|
|
|
|
Nokogiri::HTML(self.description.to_s).css("body").text() rescue ""
|
|
|
|
end
|
|
|
|
end
|