I have two models: User and Post

User acts_as_tagger and Post acts_as_taggable

I use the following method to create tagging by a user:

@user.tag(@post, :with =>"tag1, tag2, tag3", :on => :tags )

All users can tag a post...

and now I want to retrieve all tags for @post:

@post.tag_list is empty!

@post.owned_tags_on(@user, :tags) outputs all taggings by a specific user id! But I need tags from all users.

Can someone tell me how to do so?

Thanks

Farnaz

link|improve this question
I can't find documentation of acts_as_tagger (only for acts_as_taggable). I see syntax for adding tags along the lines of @post.tag_list.add("Awful"), but not syntax like you described. Can you link to the gem you're using? – danneu May 27 '11 at 19:26
I am using: github.com/mbleigh/acts-as-taggable-on – Farnaz May 28 '11 at 8:18
the syntax you have used in your comment does not save the tagger id. it sets them all to NULL – Farnaz May 28 '11 at 8:18
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.