This commit is contained in:
Dennis Tang 2018-05-24 11:18:17 +02:00
parent db30e7f3b3
commit 82430b2d46
2 changed files with 3 additions and 5 deletions

View File

@ -83,18 +83,17 @@ class Projects::ClustersController < Projects::ApplicationController
redirect_to project_cluster_path(project, @cluster)
else
generate_gcp_authorize_url
active_tab = params[:type]
case params[:type]
when 'new'
@new_cluster = @cluster
tap_existing_cluster
existing_cluster
when 'existing'
@existing_cluster = @cluster
tap_new_cluster
new_cluster
end
render :new, locals: { active_tab: active_tab }
render :new, locals: { active_tab: params[:type] }
end
end

View File

@ -1,4 +1,3 @@
-# TODO: Combine gcp/new and user/new views
- breadcrumb_title 'Kubernetes'
- page_title _("Kubernetes Cluster")
- active_tab = local_assigns.fetch(:active_tab, 'new')