debian-mirror-gitlab/lib/api/entities/deploy_key.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
307 B
Ruby
Raw Normal View History

2020-07-01 16:08:20 +05:30
# frozen_string_literal: true
module API
module Entities
class DeployKey < Entities::SSHKey
expose :key
2021-12-11 22:18:48 +05:30
expose :fingerprint
expose :projects_with_write_access, using: Entities::ProjectIdentity, if: -> (_, options) { options[:include_projects_with_write_access] }
2020-07-01 16:08:20 +05:30
end
end
end