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

14 lines
343 B
Ruby
Raw Normal View History

2018-04-13 19:47:33 -04:00
class ActionText::RichText < ActiveRecord::Base
2018-05-28 11:43:40 -04:00
self.table_name = "action_text_rich_texts"
2018-04-13 19:47:33 -04:00
serialize :body, ActionText::Content
delegate :to_s, to: :body
2018-04-13 19:47:33 -04:00
2018-05-28 11:44:02 -04:00
belongs_to :record, polymorphic: true, touch: true
2018-04-13 19:47:33 -04:00
has_many_attached :embeds
after_save do
self.embeds_attachments_blobs = body.attachments.map(&:attachable)
end
end