示例#1
0
文件: feed.py 项目: emi420/sotsiaal
 def items(self, obj):
     return Story.all().filter('author =', obj).filter('karma >', 0).order('-karma')[:15]
示例#2
0
文件: feed.py 项目: emi420/sotsiaal
 def items(self):
     return Story.all().filter('karma >', 0).order('-karma')[:15]