Welcome to mirror list, hosted at ThFree Co, Russian Federation.

evidence.rb « releases « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 01603a71dbf45de704f7b19fba62558cbdadb308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module API
  module Entities
    module Releases
      class Evidence < Grape::Entity
        include ::API::Helpers::Presentable

        expose :sha
        expose :filepath
        expose :collected_at
      end
    end
  end
end