Exemplo n.º 1
0
 def processInvites(self, accountsToInvite):
     if accountsToInvite:
         self._entity.request(SendInvitesCtx(accountsToInvite, ''))
         self._showInviteSentMessage(accountsToInvite)
Exemplo n.º 2
0
 def sendInvites(self, accountsToInvite, comment):
     self.prbEntity.request(SendInvitesCtx(accountsToInvite, comment))
Exemplo n.º 3
0
 def invite(self):
     user = self.usersStorage.getUser(self.databaseID)
     if self.prbEntity.getPermissions().canSendInvite():
         self.prbEntity.request(SendInvitesCtx([self.databaseID], ''))
         showSentInviteMessage(user)
Exemplo n.º 4
0
 def sendInvites(self, accountsToInvite, comment):
     self.prbEntity.request(SendInvitesCtx(accountsToInvite, comment))
     self.__showSentInviteMessages(accountsToInvite)