You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ObjectiveResource
This library was not allowing nested objects for me when using JSON.
I thought one of the branches that was integrated said it did this,
but maybe just for one to many. I have added it for belongs_to and
has_one. Let me know if anyone wants this. The way I coded it, you
would just add this to a class you want to show up as a nested
resource:
+ (BOOL)allowNesting{
return YES;
}
Note: you still have to actually return that nested object in your
rails code.