2020-02-07 22:08:47 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
2020-06-22 14:08:47 -04:00
|
|
|
class DeployKeyWithUser < Entities::DeployKey
|
|
|
|
expose :user, using: Entities::UserPublic
|
2020-02-07 22:08:47 -05:00
|
|
|
expose :deploy_keys_projects
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|