summaryrefslogtreecommitdiff
path: root/app/models/concerns/reactive_service.rb
blob: 713246039c1319ac2649ca9c4d0420d8136692bf (plain)
1
2
3
4
5
6
7
8
9
10
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