From f1d74871e7f00e8bbde3501a759487ac8cc4c3fc Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 13 Apr 2018 16:23:04 -0700 Subject: Rename from Active Text to Action Text This is more like Action View than Active Model. --- lib/action_text/attribute.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lib/action_text/attribute.rb (limited to 'lib/action_text/attribute.rb') diff --git a/lib/action_text/attribute.rb b/lib/action_text/attribute.rb new file mode 100644 index 0000000000..32dd1d0e3f --- /dev/null +++ b/lib/action_text/attribute.rb @@ -0,0 +1,18 @@ +module ActionText + module Attribute + extend ActiveSupport::Concern + + class_methods do + 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 + end + end +end -- cgit v1.2.3