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