Esempio n. 1
0
 def startChat(self, *participants):
     contacts = [x for x in participants]
     new_chat = Chat(self)
     new_chat.save()
     new_chat.add_participants(contacts)
     return new_chat.id