Skip to content

Instantly share code, notes, and snippets.

@jimjeffers
Created April 2, 2014 19:04
Show Gist options
  • Save jimjeffers/9940872 to your computer and use it in GitHub Desktop.
Save jimjeffers/9940872 to your computer and use it in GitHub Desktop.
class ApplicationController < ActionController::Base
before_filter unless: :devise_controller? do
resource = controller_name.singularize.to_sym
method = "#{resource}_params"
params[resource] &&= send(method) if respond_to?(method, true)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment