Six months ago, I wrote a quick blog post about adding custom filters to stock Devise controllers without subclassing all the Devise controllers. At the end of the post I noted that the prescribed method only worked in the production environment, and not in development.
Today I come to you with a solution that works in development as well as production. The basic mechanics are the same, but we’ll factor it slightly differently.
First, we’ll create a module in config/initializers/devise_filters.rb
where we’ll implement a method to add all the filters to Devise that we want. We also need to make sure this module calls this method upon initialization so that our filters get added upon startup (important for the production environment).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|
At this point, we’re in the same place we left off back in August: we can add filters to Devise controller actions, but in development mode the second request reloads all the Devise classes and all our filters are gone.
To address this, we need to add a bit of code to the end of the initializer block in config/environments/development.rb
like so:
1 2 3 4 5 6 7 8 |
|
This tells Rails to call your DeviseFilters.add_filters
method before each new request in development mode, after the classes have been reloaded.