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

class RunnerSetupController < ApplicationController
  feature_category :continuous_integration

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