示例#1
0
文件: api.py 项目: nhanb/dear-vanna
 def post(self):
     category = self.data['category']
     title = self.data['title']
     content = self.data['content']
     rant = Rant.create(category, title, content, self.user)
     return True, {
         'msg': 'rant_created',
         'id': rant.key.id()
     }