2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
2020-07-01 16:08:20 +05:30
|
|
|
class DeployKeyWithUser < Entities::DeployKey
|
|
|
|
expose :user, using: Entities::UserPublic
|
2020-03-13 15:44:24 +05:30
|
|
|
expose :deploy_keys_projects
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|