From 0e0032df2ddfe68278722d531bf3b659e8610c3c Mon Sep 17 00:00:00 2001 From: Julien Lancelot Date: Fri, 6 Jan 2017 14:31:01 +0100 Subject: [PATCH] SONAR-7286 Remove api/favourites from rails routes --- server/sonar-web/src/main/webapp/WEB-INF/config/routes.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/server/sonar-web/src/main/webapp/WEB-INF/config/routes.rb b/server/sonar-web/src/main/webapp/WEB-INF/config/routes.rb index 2b557f53438..db15069fc6c 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/config/routes.rb +++ b/server/sonar-web/src/main/webapp/WEB-INF/config/routes.rb @@ -2,7 +2,6 @@ ActionController::Routing::Routes.draw do |map| map.namespace :api do |api| api.resources :user_properties, :only => [:index, :show, :create, :destroy], :requirements => { :id => /.*/ } api.resources :projects, :only => [:index], :requirements => { :id => /.*/ } - api.resources :favourites, :only => [:index, :show, :create, :destroy], :requirements => { :id => /.*/ } end map.connect 'api', :controller => 'api/java_ws', :action => 'redirect_to_ws_listing' -- 2.39.5