rails_upgrader icon indicating copy to clipboard operation
rails_upgrader copied to clipboard

Migrate before_filter to before_action

Open bronzdoc opened this issue 4 years ago • 0 comments
trafficstars

After Rails 5.1

All *_filter methods are now called *_action: These methods were actually already deprecated in Rails 5.0, and Rails 5.1 removes support for *_filter usage, so you should be using *_action.

Before:

skip_before_filter :authenticate_user!
before_filter :authenticate_user!
after_filter :do_something

After:

skip_before_action :authenticate_user!
before_action :authenticate_user!
after_action :do_something

bronzdoc avatar Mar 05 '21 02:03 bronzdoc