Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2017-12-03 17:00:33 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2017-12-03 17:00:33 +0300
commit7af2161ca50484fea77ef816dc98ba66ff848681 (patch)
treea7d5b5d151f68b9385786906c29815d84bd4047e /app/controllers/projects/clusters_controller.rb
parent1385d700265a12c0fba344ff606feaea56538641 (diff)
Fix controllers and links
Diffstat (limited to 'app/controllers/projects/clusters_controller.rb')
-rw-r--r--app/controllers/projects/clusters_controller.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/controllers/projects/clusters_controller.rb b/app/controllers/projects/clusters_controller.rb
index def7342b262..f451d4c9774 100644
--- a/app/controllers/projects/clusters_controller.rb
+++ b/app/controllers/projects/clusters_controller.rb
@@ -1,5 +1,5 @@
class Projects::ClustersController < Projects::ApplicationController
- before_action :cluster, except: [:login, :index, :new]
+ before_action :cluster, except: [:index, :new]
before_action :authorize_read_cluster!
before_action :authorize_create_cluster!, only: [:new]
before_action :authorize_update_cluster!, only: [:update]
@@ -13,6 +13,9 @@ class Projects::ClustersController < Projects::ApplicationController
end
end
+ def new
+ end
+
def status
respond_to do |format|
format.json do
@@ -60,6 +63,7 @@ class Projects::ClustersController < Projects::ApplicationController
def update_params
params.require(:cluster).permit(
:enabled,
+ :name,
platform_kubernetes_attributes: [
:namespace,
:api_url,