rcchen/famjam

Back-End Tasks for 5/3/2016

Opened this issue · 2 comments

Must-Fix Bugs:

  • In getMe(): A User's families attribute is nil
  • In getFamily(): Family displays a bunch of members and each member has nil value for its "families" attribute
  • In getTopics(): All topics have a nil value for creator, family and images attributes
  • Image Model: Change URL attribute to UIImage

Please-Fix Bugs:

  • Right now, the Image model has its creator represented as a String. However, the Topic model has its creator represented as a User. If possible, please change the Image model to have its creator become a User to help make processes simpler (and more consistent) on my end.

getMe() now only returns the raw user object. To get a user's families, use getMeFamilies() - changed in 7760a3a

getFamily() now only returns the raw family object. To get a family's members, use getFamilyMembers() - changed in 5c20291