コード例 #1
0
ファイル: ticket.py プロジェクト: leeccong/code
 def add_comment(self, content, author):
     self.add_participant(author)
     comment = TicketComment.add(self.id, content, author)
     return comment
コード例 #2
0
 def add_comment(self, content, author):
     self.add_participant(author)
     comment = TicketComment.add(self.id, content, author)
     return comment
コード例 #3
0
ファイル: ticket.py プロジェクト: leeccong/code
 def get_comments(self):
     comments = TicketComment.gets_by_ticketid(self.id)
     return comments
コード例 #4
0
 def get_comments(self):
     comments = TicketComment.gets_by_ticketid(self.id)
     return comments