From e63acf4513dec5f2dc08293d8141971850fe4853 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 28 May 2018 17:43:21 +0200 Subject: Auto-save changes to rich text model --- lib/action_text/attribute.rb | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'lib/action_text') diff --git a/lib/action_text/attribute.rb b/lib/action_text/attribute.rb index 3b855901e8..81bd226646 100644 --- a/lib/action_text/attribute.rb +++ b/lib/action_text/attribute.rb @@ -17,19 +17,9 @@ module ActionText has_one :"rich_text_#{name}", -> { where(name: name) }, class_name: "ActionText::RichText", as: :record, inverse_of: :record, dependent: false scope :"with_rich_text_#{name}", -> { includes("rich_text_#{name}") } - end - - # def has_rich_text(attribute_name) - # serialize(attribute_name, ActionText::Content) - # - # has_many_attached "#{attribute_name}_attachments" - # - # after_save do - # blobs = public_send(attribute_name).attachments.map(&:attachable) - # public_send("#{attribute_name}_attachments_blobs=", blobs) - # end - # end + after_save { public_send(name).save if public_send(name).changed? } + end end end end -- cgit v1.2.3