11 lines
208 B
Ruby
11 lines
208 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module API
|
||
|
module Entities
|
||
|
class DeployKeysProject < Grape::Entity
|
||
|
expose :deploy_key, merge: true, using: Entities::SSHKey
|
||
|
expose :can_push
|
||
|
end
|
||
|
end
|
||
|
end
|