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

deploy_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: a8f6440b67caac9139eaabc95c3c2d11b02886e7 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module API
  module Entities
    class DeployKeyWithUser < Entities::DeployKey
      expose :user, using: Entities::UserPublic
      expose :deploy_keys_projects
    end
  end
end