2020-02-07 22:08:47 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class DeployKeysProject < Grape::Entity
|
2020-06-22 14:08:47 -04:00
|
|
|
expose :deploy_key, merge: true, using: Entities::DeployKey
|
2020-02-07 22:08:47 -05:00
|
|
|
expose :can_push
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|