def post(self): user = users.get_current_user() name = self.request.get("name") ws = Workspace(user = user, name = unicode(name)) ws.put() backlog = Column(workspace = ws, name = u"Backlog", allow_create = True) backlog.put() for i in range(1, 5): c = Column(workspace = ws, name = u"Column %s" % i) c.put()
def post(self): user = users.get_current_user() name = self.request.get("name") ws = Workspace(user = user, name = unicode(name)) ws.put() backlog = Column(workspace = ws, name = u"Backlog", allow_create = True) backlog.put() for i in range(1, 5): c = Column(workspace = ws, name = u"Column %s" % i) c.put() data = {ws.id: ws.json} res = json.dumps(data, indent=4) self.error(200) self.response.out.write(res)