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

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

module API
  module Entities
    class SshSignature < Grape::Entity
      expose :verification_status, documentation: { type: 'string', example: 'unverified' }
      expose :key, using: 'API::Entities::SSHKey'
    end
  end
end