10 lines
170 B
Ruby
10 lines
170 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module API
|
||
|
module Entities
|
||
|
class SSHKeyWithUser < Entities::SSHKey
|
||
|
expose :user, using: Entities::UserPublic
|
||
|
end
|
||
|
end
|
||
|
end
|