11 lines
259 B
Ruby
11 lines
259 B
Ruby
|
# 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
|