Re: [Rails] Re: Having difficulty with threaded comments, using acts_as_tree

2010-09-14 Thread radhames brito
try to fix the thing i suggested in red and add a parent_id field to the comments table, then make a self referencial associaction or use the acts_as_tree gem, the thing is along with the polimorphic fields a comment should be able to belong to another comment, when you try to make a comment belon

[Rails] Re: Having difficulty with threaded comments, using acts_as_tree

2010-09-14 Thread Kelp Kelp
radhames brito wrote: > you site crashed because the comment on the page article are found by > pulling the article_id from the params but you want to add childrens to > a > comment and there is no way to pull that id with the find_commentable > function I am having trouble following you. I have