summaryrefslogtreecommitdiff
path: root/app/models/concerns/reactive_service.rb
blob: af69da24994e6eff8d66886390c6bc68253b14e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module ReactiveService
  extend ActiveSupport::Concern

  included do
    include ReactiveCaching

    # Default cache key: class name + project_id
    self.reactive_cache_key = ->(service) { [service.class.model_name.singular, service.project_id] }
  end
end