summaryrefslogtreecommitdiff
path: root/app/controllers/admin/clusters/applications_controller.rb
blob: 3351d3ff825a744dea5c1cc82f908bded35e6ae0 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class Admin::Clusters::ApplicationsController < Clusters::ApplicationsController
  private

  def clusterable
    @clusterable ||= InstanceClusterablePresenter.fabricate(Clusters::Instance.new, current_user: current_user)
  end
end