I have a before_filter in my ApplicationController; that is, for every controller in my project.
before_filter
ApplicationController
How can I skip_before_filter
skip_before_filter
I recently had this problem with filter in my application_controller I solved it using skip_before_filter
application_controller
skip_before_filter :check_subdomain!, if: :devise_controller?