gitlab-org--gitlab-foss/app/controllers/admin/clusters/integrations_controller.rb

12 lines
302 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Admin::Clusters::IntegrationsController < Clusters::IntegrationsController
include EnforcesAdminAuthentication
private
def clusterable
@clusterable ||= InstanceClusterablePresenter.fabricate(Clusters::Instance.new, current_user: current_user)
end
end