debian-mirror-gitlab/app/controllers/runner_setup_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
247 B
Ruby
Raw Normal View History

2021-01-03 14:25:43 +05:30
# frozen_string_literal: true
class RunnerSetupController < ApplicationController
2021-10-27 15:23:28 +05:30
feature_category :runner
2021-01-03 14:25:43 +05:30
def platforms
render json: Gitlab::Ci::RunnerInstructions::OS.merge(Gitlab::Ci::RunnerInstructions::OTHER_ENVIRONMENTS)
end
end