I have created 2 simple resources; post and comments
class Post < ActiveRecord::Base
hobo_model # Don't put anything above this
fields do
title :string
description :text
timestamps
end
has_many :comments, :dependent => :destroy
children :comments
...
class Comment < ActiveRecord::Base
hobo_model # Don't put anything above this
fields do
comment :text
timestamps
end
belongs_to :post
...
With 1.3.0.pre26 I was able to see comments under post show page but
as soon as I updated to 1.3.0.pre27, comments card doesn't show up in
the post show page anymore. If I rollback to 1.3.0.pre26 it starts to
show up again.
--
You received this message because you are subscribed to the Google Groups "Hobo
Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/hobousers?hl=en.