3f759e1674
Now we have terminals for instance and group clusters we can remove the FF now. Deploying to group clusters has been working without complaints too.
20 lines
442 B
Ruby
20 lines
442 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Groups::ClustersController < Clusters::ClustersController
|
|
include ControllerWithCrossProjectAccessCheck
|
|
|
|
prepend_before_action :group
|
|
requires_cross_project_access
|
|
|
|
layout 'group'
|
|
|
|
private
|
|
|
|
def clusterable
|
|
@clusterable ||= ClusterablePresenter.fabricate(group, current_user: current_user)
|
|
end
|
|
|
|
def group
|
|
@group ||= find_routable!(Group, params[:group_id] || params[:id])
|
|
end
|
|
end
|