Displaying 1 result from an estimated 1 matches for "video_tag".
Did you mean:
video_tags
2009 Jan 01
1
HasManyThroughCantAssociateNewRecords Exception
I have a model:
class Video < ActiveRecord::Base
has_many :video_tags
has_many :video_types
has_many :tags, :through => :video_tags, :uniq => :true
has_many :types, :through => :video_types, :uniq => :true
def get_tag_list(delimiter)
tags.collect { |t| t.tag }.join(delimiter)
end
def set_tag_list(tag_list, delimiter)
# doesn'...