Files
box-o-sand/ares/www/families.json
T
Dan Buch 2599a100da Playing with ActiveResource just a bit more
before trashing all of it.  What I really ought to be doing is playing
with Sequel or getting more cozy with ActiveRecord.
2012-05-29 16:41:47 -04:00

19 lines
453 B
JSON

from server.families import Families
from server.helpers import json_loads_from_request
__families__ = Families()
if GET:
response.body = __families__.getall()
elif POST:
family = json_loads_from_request(request)['family']
family_id = __families__.add(family)
response.headers['Location'] = '/families/{}.json'.format(family_id)
family['id'] = family_id
response.body = family
response.code = 201
# vim:filetype=python