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

12 lines
302 B
Ruby

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