summaryrefslogtreecommitdiff
path: root/app/graphql/types/commit_signatures/x509_signature_type.rb
blob: 2d58c3d5b5df63cc1b76be4d7bc698d6bdecc17b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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,
                                    method: :signed_by_user,
                                    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