aboutsummaryrefslogtreecommitdiffstats
path: root/actiontext/lib/action_text/attachments/caching.rb
blob: 7c727bfc26ce7dad031db39847c8651742b7ef26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

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