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

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

module API
  module Entities
    class X509Issuer < Grape::Entity
      expose :id
      expose :subject
      expose :subject_key_identifier
      expose :crl_url
    end
  end
end