attr_accessible seems to no longer work within my model.
attr_accessible
What is the way to allow mass assignment in Rails 4?
An update for Rails 5:
gem 'protected_attributes'
doesn't seem to work anymore. But give:
gem 'protected_attributes_continued'
a try.