Ejemplo n.º 1
0
 def add_comment(self, content, author):
     self.add_participant(author)
     comment = TicketComment.add(self.id, content, author)
     return comment
Ejemplo n.º 2
0
 def add_comment(self, content, author):
     self.add_participant(author)
     comment = TicketComment.add(self.id, content, author)
     return comment
Ejemplo n.º 3
0
 def get_comments(self):
     comments = TicketComment.gets_by_ticketid(self.id)
     return comments
Ejemplo n.º 4
0
 def get_comments(self):
     comments = TicketComment.gets_by_ticketid(self.id)
     return comments