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
2018-05-28 17:44:02 +02:00

12 lines
315 B
Ruby

class ActionText::RichText < ActiveRecord::Base
self.table_name = "action_text_rich_texts"
serialize :body, ActionText::Content
belongs_to :record, polymorphic: true, touch: true
has_many_attached :embeds
after_save do
self.embeds_attachments_blobs = body.attachments.map(&:attachable)
end
end