mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
10 lines
216 B
Ruby
10 lines
216 B
Ruby
|
class ActionText::RichText < ActiveRecord::Base
|
||
|
serialize :body, ActionText::Content
|
||
|
|
||
|
has_many_attached :embeds
|
||
|
|
||
|
after_save do
|
||
|
self.embeds_attachments_blobs = body.attachments.map(&:attachable)
|
||
|
end
|
||
|
end
|