Skip to content

Instantly share code, notes, and snippets.

@gnufied
Created April 20, 2012 13:14
Show Gist options
  • Save gnufied/2428449 to your computer and use it in GitHub Desktop.
Save gnufied/2428449 to your computer and use it in GitHub Desktop.
if !klass.accessible_attributes.blank?
if klass.accessible_attributes.include?(key)
params[key] = value
end
else
if !klass.protected_attributes.include?(key)
params[key] = value
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment