10 lines
262 B
Ruby
10 lines
262 B
Ruby
# 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
|