Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ssh_key_with_user.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 95559bbf2ac151a242f1e3ece1c1830ba009d8c5 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module API
  module Entities
    class SSHKeyWithUser < Entities::SSHKey
      expose :user, using: Entities::UserPublic
    end
  end
end