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

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

module API
  module Entities
    class RunnerRegistrationDetails < Grape::Entity
      expose :id, :token
    end
  end
end