mirror of
https://github.com/pretix/pretix.git
synced 2026-05-07 15:34:02 +00:00
14 lines
303 B
Python
14 lines
303 B
Python
from pretix.base.signals import EventPluginSignal
|
|
|
|
"""
|
|
This signal is sent out to include code into the HTML <head> tag
|
|
"""
|
|
html_head = EventPluginSignal(
|
|
providing_args=["request"]
|
|
)
|
|
|
|
"""
|
|
This signal is sent out to retrieve pages for the checkout flow
|
|
"""
|
|
checkout_flow_steps = EventPluginSignal()
|