summaryrefslogtreecommitdiff
path: root/lib/api/entities/job_request/cache.rb
blob: cd533d7e5b382cce9e08711b52cd5b1ca99539bd (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module API
  module Entities
    module JobRequest
      class Cache < Grape::Entity
        expose :key, :untracked, :paths, :policy, :when
      end
    end
  end
end