diff options
author | Fabrice Bellingard <fabrice.bellingard@sonarsource.com> | 2012-10-01 08:50:17 +0200 |
---|---|---|
committer | Fabrice Bellingard <fabrice.bellingard@sonarsource.com> | 2012-10-01 08:53:10 +0200 |
commit | a1d4e882df73ad7858c766f80f57a5f1fb15782c (patch) | |
tree | e5819f9f6dadee9473b07caf98ddfe7858e1e2c8 /sonar-server | |
parent | e987cb03edd7854599b93beacefd1b0f6b0dda53 (diff) | |
download | sonarqube-a1d4e882df73ad7858c766f80f57a5f1fb15782c.tar.gz sonarqube-a1d4e882df73ad7858c766f80f57a5f1fb15782c.zip |
SONAR-3675 Remove the "events" route
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/config/routes.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/config/routes.rb b/sonar-server/src/main/webapp/WEB-INF/config/routes.rb index 2c304042b0c..6cfed6caea7 100644 --- a/sonar-server/src/main/webapp/WEB-INF/config/routes.rb +++ b/sonar-server/src/main/webapp/WEB-INF/config/routes.rb @@ -3,9 +3,6 @@ ActionController::Routing::Routes.draw do |map| map.connect 'users/set_groups', :controller => 'users', :action => 'set_groups' map.resources :users - # used only for the events widget - map.resources :events - map.namespace :api do |api| api.resources :events, :only => [:index, :show, :create, :destroy] api.resources :user_properties, :only => [:index, :show, :create, :destroy], :requirements => { :id => /.*/ } |