gitlab-org--gitlab-foss/lib/api/entities/deploy_key.rb

14 lines
385 B
Ruby

# frozen_string_literal: true
module API
module Entities
class DeployKey < Entities::SSHKey
expose :key
expose :fingerprint, if: ->(key, _) { key.fingerprint.present? }
expose :fingerprint_sha256
expose :projects_with_write_access, using: Entities::ProjectIdentity, if: -> (_, options) { options[:include_projects_with_write_access] }
end
end
end