summaryrefslogtreecommitdiff
path: root/app/graphql/types/commit_signatures/x509_signature_type.rb
blob: 9ac96dbc01571a59c4182ca4fd5c1e881e919a43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module Types
  module CommitSignatures
    class X509SignatureType < Types::BaseObject
      graphql_name 'X509Signature'
      description 'X.509 signature for a signed commit'

      implements Types::CommitSignatureInterface

      authorize :download_code

      field :user, Types::UserType, null: true,
                                    calls_gitaly: true,
                                    description: 'User associated with the key.'

      field :x509_certificate, Types::X509CertificateType,
                               null: true,
                               description: 'Certificate used for the signature.'
    end
  end
end