aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_text/attachments/caching.rb
blob: b867e2ff912d1c4ecea129578f081569d02ef476 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module ActionText
  module Attachments
    module Caching
      def cache_key(*args)
        [self.class.name, cache_digest, *attachable.cache_key(*args)].join("/")
      end

      private
        def cache_digest
          Digest::SHA256.hexdigest(node.to_s)
        end
    end
  end
end