I've got a Article and a Tag model associated in a n-m relationship.
I want to be able to find tags of a given article and articles of a given tags, e.g.:
tags = Article.find(id).first.tags
or
articles = Tag.find(id).first.articles
My current Tag model is:
class Tag
include Mongoid::Document
has_and_belongs_to_many :articles
end
My current Article model is:
class Article
include Mongoid::Document
include Mongoid::Timestamps
attr_accessor :tag_list
before_save :assign_tags
field :title, :type => String
field :notes, :type => String
has_and_belongs_to_many :tags
private
def assign_tags
if @tag_list
self.tags = @tag_list.gsub(/\s+/,"").split(/,/).uniq.map do |name|
Tag.find_or_create_by(:name => name.strip)
end
end
end
end
How can I implement this using mongoid? At the moment the tag model doesn't know anything about related articles.
Best regards!