Exemple #1
0
	def getTagss(self,obj_id):
		c = Comment()
		cs = c.getCommentsById(obj_id,True)
		return cs
Exemple #2
0
def getComments(parent_id=None):
	e = Event('web.getComments')
	comment = Comment()
	cs = comment.getCommentsById(parent_id,True)
	e.save()
	return cs