]> source.dussan.org Git - redmine.git/commitdiff
Use .skip_before_action instead of .skip_before_filter.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Thu, 14 Jul 2016 07:29:04 +0000 (07:29 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Thu, 14 Jul 2016 07:29:04 +0000 (07:29 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@15656 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/account_controller.rb
app/controllers/my_controller.rb

index 7101d17bed63e65368ce12ab9a86731f5257a584..1191accfdecf38656e5c02f424f87e758199d938 100644 (file)
@@ -20,7 +20,7 @@ class AccountController < ApplicationController
   include CustomFieldsHelper
 
   # prevents login action to be filtered by check_if_login_required application scope filter
-  skip_before_filter :check_if_login_required, :check_password_change
+  skip_before_action :check_if_login_required, :check_password_change
 
   # Overrides ApplicationController#verify_authenticity_token to disable
   # token verification on openid callbacks
index 2699f2cb0658221abcde8facd165f5774495227b..aefb30282ae1e7c7ec194ee4eb282d36fddf7685 100644 (file)
@@ -18,7 +18,7 @@
 class MyController < ApplicationController
   before_action :require_login
   # let user change user's password when user has to
-  skip_before_filter :check_password_change, :only => :password
+  skip_before_action :check_password_change, :only => :password
 
   require_sudo_mode :account, only: :post
   require_sudo_mode :reset_rss_key, :reset_api_key, :show_api_key, :destroy