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: c3f0cb3659d05e31f22f4d6098be0e0e5b2adb7b (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, documentation: { type: 'string', example: 'unverified' }
      expose :x509_certificate, using: 'API::Entities::X509Certificate'
    end
  end
end