Commit 5ae179b2 authored by Stan Hu's avatar Stan Hu

Merge branch 'mrincon/runner-feature-categorization' into 'master'

Use correct runner categorization in runner controllers

See merge request gitlab-org/gitlab!64495
parents ae6fe648 a3696bfc
...@@ -8,7 +8,7 @@ class Admin::RunnersController < Admin::ApplicationController ...@@ -8,7 +8,7 @@ class Admin::RunnersController < Admin::ApplicationController
push_frontend_feature_flag(:runner_list_view_vue_ui, current_user, default_enabled: :yaml) push_frontend_feature_flag(:runner_list_view_vue_ui, current_user, default_enabled: :yaml)
end end
feature_category :continuous_integration feature_category :runner
NUMBER_OF_RUNNERS_PER_PAGE = 30 NUMBER_OF_RUNNERS_PER_PAGE = 30
......
...@@ -7,7 +7,7 @@ class Groups::RunnersController < Groups::ApplicationController ...@@ -7,7 +7,7 @@ class Groups::RunnersController < Groups::ApplicationController
before_action :runner, only: [:edit, :update, :destroy, :pause, :resume, :show] before_action :runner, only: [:edit, :update, :destroy, :pause, :resume, :show]
feature_category :continuous_integration feature_category :runner
def show def show
end end
......
...@@ -6,7 +6,7 @@ class Projects::RunnersController < Projects::ApplicationController ...@@ -6,7 +6,7 @@ class Projects::RunnersController < Projects::ApplicationController
layout 'project_settings' layout 'project_settings'
feature_category :continuous_integration feature_category :runner
def index def index
redirect_to project_settings_ci_cd_path(@project, anchor: 'js-runners-settings') redirect_to project_settings_ci_cd_path(@project, anchor: 'js-runners-settings')
......
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