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

x509_signature.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 909b630288c9c6b697a7731e1981947d1d954340 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module API
  module Entities
    class X509Signature < Grape::Entity
      expose :verification_status
      expose :x509_certificate, using: 'API::Entities::X509Certificate'
    end
  end
end