gitlab-org--gitlab-foss/app/controllers/runner_setup_controller.rb

10 lines
247 B
Ruby

# frozen_string_literal: true
class RunnerSetupController < ApplicationController
feature_category :runner
def platforms
render json: Gitlab::Ci::RunnerInstructions::OS.merge(Gitlab::Ci::RunnerInstructions::OTHER_ENVIRONMENTS)
end
end