diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2012-11-26 15:16:00 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2012-11-26 15:16:17 +0100 |
commit | 8389c99acd8feebad5ad8a6df9e17e47ff4b4f66 (patch) | |
tree | 1a31fea0f797083e69bf9a6ce67a5f66a025852d /sonar-server/src/main/webapp/WEB-INF/app/controllers/backup_controller.rb | |
parent | fafa2a93ae7df5ffed66ead68ce07500a45b96c1 (diff) | |
download | sonarqube-8389c99acd8feebad5ad8a6df9e17e47ff4b4f66.tar.gz sonarqube-8389c99acd8feebad5ad8a6df9e17e47ff4b4f66.zip |
SONAR-3930 change export method from post to get
Diffstat (limited to 'sonar-server/src/main/webapp/WEB-INF/app/controllers/backup_controller.rb')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/controllers/backup_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/controllers/backup_controller.rb b/sonar-server/src/main/webapp/WEB-INF/app/controllers/backup_controller.rb index 2306a01fcfa..687972c55cd 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/controllers/backup_controller.rb +++ b/sonar-server/src/main/webapp/WEB-INF/app/controllers/backup_controller.rb @@ -22,7 +22,7 @@ class BackupController < ApplicationController SECTION=Navigation::SECTION_CONFIGURATION before_filter :admin_required - verify :method => :post, :only => [:export, :import], :redirect_to => { :action => :index } + verify :method => :post, :only => [:import], :redirect_to => { :action => :index } def index |