summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb17
-rw-r--r--config/routes/project.rb15
2 files changed, 18 insertions, 14 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 37c7f98ec98..cfb81cabfe4 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -84,6 +84,23 @@ Rails.application.routes.draw do
draw :instance_statistics
end
+ concern :clusterable do
+ resources :clusters, except: [:edit, :create], controller: '/clusters' do
+ collection do
+ post :create_gcp
+ post :create_user
+ end
+
+ member do
+ get :status, format: :json
+
+ scope :applications do
+ post '/:application', to: '/clusters/applications#create', as: :install_applications
+ end
+ end
+ end
+ end
+
draw :api
draw :sidekiq
draw :help
diff --git a/config/routes/project.rb b/config/routes/project.rb
index 73c46f72168..387d2363552 100644
--- a/config/routes/project.rb
+++ b/config/routes/project.rb
@@ -206,20 +206,7 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
end
end
- resources :clusters, except: [:edit, :create] do
- collection do
- post :create_gcp
- post :create_user
- end
-
- member do
- get :status, format: :json
-
- scope :applications do
- post '/:application', to: 'clusters/applications#create', as: :install_applications
- end
- end
- end
+ concerns :clusterable
resources :environments, except: [:destroy] do
member do