diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-01-06 14:31:01 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-01-10 09:56:55 +0100 |
commit | 0e0032df2ddfe68278722d531bf3b659e8610c3c (patch) | |
tree | 97007782c2c1a92e32bc29b2482c3e3f7302eb65 /server/sonar-web/src | |
parent | 6bb914932a45a352d2d8ffb60f824ac289332a30 (diff) | |
download | sonarqube-0e0032df2ddfe68278722d531bf3b659e8610c3c.tar.gz sonarqube-0e0032df2ddfe68278722d531bf3b659e8610c3c.zip |
SONAR-7286 Remove api/favourites from rails routes
Diffstat (limited to 'server/sonar-web/src')
-rw-r--r-- | server/sonar-web/src/main/webapp/WEB-INF/config/routes.rb | 1 |
1 files changed, 0 insertions, 1 deletions
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' |