10 lines
211 B
Ruby
10 lines
211 B
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
module Entities
|
|
class DeployKeyWithUser < Entities::DeployKey
|
|
expose :user, using: Entities::UserPublic
|
|
expose :deploy_keys_projects
|
|
end
|
|
end
|
|
end
|