aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/action_text
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/action_text')
-rw-r--r--app/models/action_text/rich_text.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/app/models/action_text/rich_text.rb b/app/models/action_text/rich_text.rb
index 6747def9a5..7c0fdf240d 100644
--- a/app/models/action_text/rich_text.rb
+++ b/app/models/action_text/rich_text.rb
@@ -2,15 +2,14 @@ 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_blobs = body.attachments.map(&:attachable)
+ before_save do
+ self.embeds = body.attachments.map(&:attachable)
end
-
def to_s
body.to_s.html_safe
end