]> source.dussan.org Git - redmine.git/commitdiff
Removes action caching on /robots.txt.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 10 Jul 2016 20:34:37 +0000 (20:34 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 10 Jul 2016 20:34:37 +0000 (20:34 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@15633 e93f8b46-1217-0410-a6f0-8f06a7374b81

Gemfile
app/controllers/projects_controller.rb
app/controllers/welcome_controller.rb

diff --git a/Gemfile b/Gemfile
index 2ddfd9208076aafed431bb682b5aa1bfa87b0298..8bb386bc1033930a0940a8e2879d66b6558b7f3e 100644 (file)
--- a/Gemfile
+++ b/Gemfile
@@ -11,7 +11,6 @@ gem "builder", ">= 3.0.4"
 gem "request_store", "1.0.5"
 gem "mime-types", (RUBY_VERSION >= "2.0" ? "~> 3.0" : "~> 2.99")
 gem "protected_attributes"
-gem "actionpack-action_caching"
 gem "actionpack-xml_parser"
 gem "roadie-rails"
 gem "mimemagic"
index 8753badde9396faaf4d5238542efbbbec12cd73f..15ab4c86ec590208ff1d6324e9bd119733910e9b 100644 (file)
@@ -27,12 +27,6 @@ class ProjectsController < ApplicationController
   accept_api_auth :index, :show, :create, :update, :destroy
   require_sudo_mode :destroy
 
-  after_filter :only => [:create, :edit, :update, :archive, :unarchive, :destroy] do |controller|
-    if controller.request.post?
-      controller.send :expire_action, :controller => 'welcome', :action => 'robots'
-    end
-  end
-
   helper :custom_fields
   helper :issues
   helper :queries
index 717c72916e53f585a3540baa5faf8859e186e73d..fe06d873f302de5ddd01716a7994c88a0288a865 100644 (file)
@@ -16,7 +16,6 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
 class WelcomeController < ApplicationController
-  caches_action :robots
 
   def index
     @news = News.latest User.current