user owned tagging June 15th, 2007

Tagging usually involves many users individually tagging things. Often it is important to track who tagged what. I wanted to make this easy to do, so I have added user owned tagging capabilities to acts_as_taggable_redux.

The plugin can continue to be used like it was before, but you can also pass user_id to relevant functions to assign an owner. See the README for more detailed examples, and let me know how it can be improved on.

2 Responses to “user owned tagging”

  1. young Says:
    how i can integrate tags with an Item model and a user model? I have it working with Rails 1.2.3 using: i add this to my user model: acts_as_tagger but have an error when i create item: NoMethodError in ItemsController#create undefined method `tag_list=' for #<item:0x47fe848> then i add "acts_as_taggable" to my item model, ArgumentError in ItemsController#create Wrong number of arguments (1 for 0) new.rhtml: Tags: <%= f.text_field :tag_list, :value => @item.tag_list(current_user) -%> <%= f.hidden_field :user_id, :value => current_user.id -%> I am using acts_as_authenticated, help me please.
  2. monki Says:
    I would say the issue is probably in your ItemsController, I'd need to see the code for that. Feel free to send me an email and I can probably help sort you out.

Sorry, comments are closed for this article.