mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
13 lines
343 B
Ruby
13 lines
343 B
Ruby
class ActionText::RichText < ActiveRecord::Base
|
|
self.table_name = "action_text_rich_texts"
|
|
|
|
serialize :body, ActionText::Content
|
|
delegate :to_s, to: :body
|
|
|
|
belongs_to :record, polymorphic: true, touch: true
|
|
has_many_attached :embeds
|
|
|
|
after_save do
|
|
self.embeds_attachments_blobs = body.attachments.map(&:attachable)
|
|
end
|
|
end
|