16 lines
396 B
Ruby
16 lines
396 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Projects::Clusters::IntegrationsController < ::Clusters::IntegrationsController
|
||
|
prepend_before_action :project
|
||
|
|
||
|
private
|
||
|
|
||
|
def clusterable
|
||
|
@clusterable ||= ClusterablePresenter.fabricate(project, current_user: current_user)
|
||
|
end
|
||
|
|
||
|
def project
|
||
|
@project ||= find_routable!(Project, File.join(params[:namespace_id], params[:project_id]))
|
||
|
end
|
||
|
end
|