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

runner_setup_controller.rb « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3926bc553ee3f0df730736b668083883f55f157e (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class RunnerSetupController < ApplicationController
  feature_category :runner
  urgency :low

  def platforms
    render json: Gitlab::Ci::RunnerInstructions::OS.merge(Gitlab::Ci::RunnerInstructions::OTHER_ENVIRONMENTS)
  end
end