Esempio n. 1
0
def confirmation_messages(event: Event):
    msgs = {}
    responses = checkout_confirm_messages.send(event)
    for receiver, response in responses:
        msgs.update(response)

    return msgs
Esempio n. 2
0
 def confirm_messages(self):
     if self.all_optional:
         return {}
     msgs = {}
     responses = checkout_confirm_messages.send(self.request.event)
     for receiver, response in responses:
         msgs.update(response)
     return msgs
Esempio n. 3
0
 def confirm_messages(self):
     if self.all_optional:
         return {}
     msgs = {}
     responses = checkout_confirm_messages.send(self.request.event)
     for receiver, response in responses:
         msgs.update(response)
     return msgs