Created
August 30, 2010 07:49
-
-
Save jcxplorer/557149 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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