Customer accounts & Memberships (#2024)

This commit is contained in:
Raphael Michel
2021-05-04 16:56:06 +02:00
committed by GitHub
parent 62e412bbc0
commit 8e79eb570e
116 changed files with 7975 additions and 279 deletions

View File

@@ -324,7 +324,7 @@ The ``sender`` keyword argument will contain an organizer.
validate_order = EventPluginSignal(
providing_args=["payment_provider", "positions", "email", "locale", "invoice_address",
"meta_info"]
"meta_info", "customer"]
)
"""
This signal is sent out when the user tries to confirm the order, before we actually create
@@ -633,7 +633,7 @@ well, otherwise it will be ``None``.
"""
global_email_filter = GlobalSignal(
providing_args=['message', 'order', 'user']
providing_args=['message', 'order', 'user', 'customer', 'organizer']
)
"""
This signal allows you to implement a middleware-style filter on all outgoing emails. You are expected to