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

8 lines
219 B
Ruby
Raw Normal View History

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