Commit 3886d2ac authored by Markus Koller's avatar Markus Koller

Merge branch 'cli-update-feature-category-runner' into 'master'

Update feature category to runner for relevant controllers

See merge request gitlab-org/gitlab!68215
parents 9559c890 67b349bb
......@@ -3,7 +3,7 @@
class Admin::RunnerProjectsController < Admin::ApplicationController
before_action :project, only: [:create]
feature_category :continuous_integration
feature_category :runner
def create
@runner = Ci::Runner.find(params[:runner_project][:runner_id])
......
......@@ -5,7 +5,7 @@ class Projects::RunnerProjectsController < Projects::ApplicationController
layout 'project_settings'
feature_category :continuous_integration
feature_category :runner
def create
@runner = Ci::Runner.find(params[:runner_project][:runner_id])
......
# frozen_string_literal: true
class RunnerSetupController < ApplicationController
feature_category :continuous_integration
feature_category :runner
def platforms
render json: Gitlab::Ci::RunnerInstructions::OS.merge(Gitlab::Ci::RunnerInstructions::OTHER_ENVIRONMENTS)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment