Commit 67b349bb authored by Cheryl Li's avatar Cheryl Li

Update feature category to runner for relevant controllers

parent d5ae78b0
......@@ -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