summaryrefslogtreecommitdiff
path: root/app/controllers/groups/clusters/applications_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/groups/clusters/applications_controller.rb')
-rw-r--r--app/controllers/groups/clusters/applications_controller.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/controllers/groups/clusters/applications_controller.rb b/app/controllers/groups/clusters/applications_controller.rb
deleted file mode 100644
index ce6fda4143c..00000000000
--- a/app/controllers/groups/clusters/applications_controller.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-class Groups::Clusters::ApplicationsController < Clusters::ApplicationsController
- include ControllerWithCrossProjectAccessCheck
-
- prepend_before_action :group
- requires_cross_project_access
-
- private
-
- def clusterable
- @clusterable ||= ClusterablePresenter.fabricate(group, current_user: current_user)
- end
-
- def group
- @group ||= find_routable!(Group, params[:group_id] || params[:id], request.path_info)
- end
-end