summaryrefslogtreecommitdiff
path: root/app/models/cached_blob.rb
blob: fa95ecc70bd7d940d0146adc3d0c4337cd32021c (plain)
1
2
3
4
5
6
7
8
9
10
11
class CachedBlob
  delegate *BlobsService::CACHED_METHODS, to: :@blob_cache

  def initialize(blob_cache)
    @blob_cache = Hashie::Mash.new(blob_cache)
  end

  def load_all_data!
    # no-op
  end
end