10 lines
263 B
Ruby
10 lines
263 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class RunnerSetupController < ApplicationController
|
||
|
feature_category :continuous_integration
|
||
|
|
||
|
def platforms
|
||
|
render json: Gitlab::Ci::RunnerInstructions::OS.merge(Gitlab::Ci::RunnerInstructions::OTHER_ENVIRONMENTS)
|
||
|
end
|
||
|
end
|