Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/groups/runners_controller.rb')
-rw-r--r--app/controllers/groups/runners_controller.rb20
1 files changed, 4 insertions, 16 deletions
diff --git a/app/controllers/groups/runners_controller.rb b/app/controllers/groups/runners_controller.rb
index 4b52617d287..2dd0e36b65f 100644
--- a/app/controllers/groups/runners_controller.rb
+++ b/app/controllers/groups/runners_controller.rb
@@ -6,10 +6,6 @@ class Groups::RunnersController < Groups::ApplicationController
before_action :authorize_update_runner!, only: [:edit, :update, :destroy, :pause, :resume]
before_action :runner, only: [:edit, :update, :destroy, :pause, :resume, :show, :register]
- before_action only: [:index] do
- push_frontend_feature_flag(:create_runner_workflow_for_namespace, group)
- end
-
feature_category :runner
urgency :low
@@ -20,11 +16,9 @@ class Groups::RunnersController < Groups::ApplicationController
Gitlab::Tracking.event(self.class.name, 'index', user: current_user, namespace: @group)
end
- def show
- end
+ def show; end
- def edit
- end
+ def edit; end
def update
if Ci::Runners::UpdateRunnerService.new(@runner).execute(runner_params).success?
@@ -34,12 +28,10 @@ class Groups::RunnersController < Groups::ApplicationController
end
end
- def new
- render_404 unless create_runner_workflow_for_namespace_enabled?
- end
+ def new; end
def register
- render_404 unless create_runner_workflow_for_namespace_enabled? && runner.registration_available?
+ render_404 unless runner.registration_available?
end
private
@@ -67,10 +59,6 @@ class Groups::RunnersController < Groups::ApplicationController
render_404
end
-
- def create_runner_workflow_for_namespace_enabled?
- Feature.enabled?(:create_runner_workflow_for_namespace, group)
- end
end
Groups::RunnersController.prepend_mod