aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_text/attribute.rb
blob: 32dd1d0e3fbd2c6fe24e9ccee1298ae9d762bce6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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