From 53925fa741d09fab2d749bc14f3a11240236a025 Mon Sep 17 00:00:00 2001 From: Philipp Thun Date: Fri, 20 Mar 2026 12:32:23 +0100 Subject: [PATCH] Remove orphaned service_bindings routes The V3 ServiceBindingsController was removed in commit 57357b468 (Feb 2021) when it was replaced by service_credential_bindings, but the routes were accidentally left behind. These orphaned routes cause 500 errors with "uninitialized constant ServiceBindingsController" during route resolution. --- config/routes.rb | 6 ------ 1 file changed, 6 deletions(-) diff --git a/config/routes.rb b/config/routes.rb index d1723e474e0..dc1039c54c4 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -186,12 +186,6 @@ delete '/security_groups/:guid/relationships/staging_spaces/:space_guid', to: 'security_groups#delete_staging_spaces' delete '/security_groups/:guid', to: 'security_groups#destroy' - # service_bindings - post '/service_bindings', to: 'service_bindings#create' - get '/service_bindings/:guid', to: 'service_bindings#show' - get '/service_bindings', to: 'service_bindings#index' - delete '/service_bindings/:guid', to: 'service_bindings#destroy' - # service_credential_bindings resources :service_credential_bindings, param: :guid,