summaryrefslogtreecommitdiff
path: root/app/controllers/runner_setup_controller.rb
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