jviney / acts_as_taggable_on_steroids

Tagging for Ruby on Rails
MIT License
240 stars 63 forks source link

Can't mass-assign protected attributes: name #20

Open FreeMako opened 11 years ago

FreeMako commented 11 years ago

Using Rails 3.2

It seems in the Tag model that :name is not accessible, tried to override creating a file Tag.rb:

class Tag < ActiveRecord::Base attr_accessible :name end

but it did not solve the issue.

Thank you