mirror of
https://github.com/pretix/pretix.git
synced 2026-05-08 15:44:02 +00:00
Send signal on checkin (#1546)
* Send signal when orderposition is checked in * Add position_checked_in signal to documentation * Rename signal to checkin_created * Update general.rst * Update signals.py Co-authored-by: Raphael Michel <mail@raphaelmichel.de>
This commit is contained in:
@@ -405,6 +405,17 @@ the deletion of the order.
|
||||
As with all event-plugin signals, the ``sender`` keyword argument will contain the event.
|
||||
"""
|
||||
|
||||
checkin_created = EventPluginSignal(
|
||||
providing_args=["checkin"],
|
||||
)
|
||||
"""
|
||||
This signal is sent out every time a check-in is created (i.e. an order position is marked as
|
||||
checked in). It is not send if the position was already checked in and is force-checked-in a second time.
|
||||
The check-in object is given as the first argument
|
||||
|
||||
As with all event-plugin signals, the ``sender`` keyword argument will contain the event.
|
||||
"""
|
||||
|
||||
logentry_display = EventPluginSignal(
|
||||
providing_args=["logentry"]
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user