]> source.dussan.org Git - redmine.git/commitdiff
Removed deprecated accept_key_auth methods.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 13 Apr 2012 19:40:18 +0000 (19:40 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 13 Apr 2012 19:40:18 +0000 (19:40 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9392 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/application_controller.rb

index bdd3e6a9f3ee551b711e7bc7427408e543d2cd36..5ac72cc70c9ce62aefc59f160f781fc730f601c0 100644 (file)
@@ -377,18 +377,6 @@ class ApplicationController < ActionController::Base
            :content_type => 'application/atom+xml'
   end
 
-  # TODO: remove in Redmine 1.4
-  def self.accept_key_auth(*actions)
-    ActiveSupport::Deprecation.warn "ApplicationController.accept_key_auth is deprecated and will be removed in Redmine 1.4. Use accept_rss_auth (or accept_api_auth) instead."
-    accept_rss_auth(*actions)
-  end
-
-  # TODO: remove in Redmine 1.4
-  def accept_key_auth_actions
-    ActiveSupport::Deprecation.warn "ApplicationController.accept_key_auth_actions is deprecated and will be removed in Redmine 1.4. Use accept_rss_auth (or accept_api_auth) instead."
-    self.class.accept_rss_auth
-  end
-
   def self.accept_rss_auth(*actions)
     if actions.any?
       write_inheritable_attribute('accept_rss_auth_actions', actions)