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

evidence_type.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 33f46c712f1f127e28ec6139d60535fcdfeee56a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module Types
  class EvidenceType < BaseObject
    graphql_name 'ReleaseEvidence'
    description 'Evidence for a release'

    authorize :read_release_evidence

    present_using Releases::EvidencePresenter

    field :id, GraphQL::Types::ID, null: false,
          description: 'ID of the evidence.'
    field :sha, GraphQL::Types::String, null: true,
          description: 'SHA1 ID of the evidence hash.'
    field :filepath, GraphQL::Types::String, null: true,
          description: 'URL from where the evidence can be downloaded.'
    field :collected_at, Types::TimeType, null: true,
          description: 'Timestamp when the evidence was collected.'
  end
end