21 lines
558 B
Ruby
21 lines
558 B
Ruby
class DeployKeyEntity < Grape::Entity
|
|
expose :id
|
|
expose :user_id
|
|
expose :title
|
|
expose :fingerprint
|
|
expose :can_push
|
|
expose :destroyed_when_orphaned?, as: :destroyed_when_orphaned
|
|
expose :almost_orphaned?, as: :almost_orphaned
|
|
expose :created_at
|
|
expose :updated_at
|
|
expose :projects, using: ProjectEntity do |deploy_key|
|
|
deploy_key.projects.without_deleted.select { |project| options[:user].can?(:read_project, project) }
|
|
end
|
|
expose :can_edit
|
|
|
|
private
|
|
|
|
def can_edit
|
|
options[:user].can?(:update_deploy_key, object)
|
|
end
|
|
end
|