Skip to content

Instantly share code, notes, and snippets.

@jcxplorer
Created August 30, 2010 07:49
Show Gist options
  • Save jcxplorer/557149 to your computer and use it in GitHub Desktop.
Save jcxplorer/557149 to your computer and use it in GitHub Desktop.
class Admin::AdministrationController < ActionController::Base
inherit_resources
before_filter :authenticate_admin!
protected
def resource
resource = super
def resource.sanitize_for_mass_assignment(attrs)
attrs
end
resource
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment