summaryrefslogtreecommitdiff
path: root/config/routes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb17
1 files changed, 17 insertions, 0 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