mirror of
https://github.com/pretix/pretix.git
synced 2026-05-10 16:04:02 +00:00
Ensure that we document all signals
This commit is contained in:
@@ -12,7 +12,7 @@ Core
|
|||||||
|
|
||||||
.. automodule:: pretix.base.signals
|
.. automodule:: pretix.base.signals
|
||||||
:members: periodic_task, event_live_issues, event_copy_data, email_filter, register_notification_types,
|
:members: periodic_task, event_live_issues, event_copy_data, email_filter, register_notification_types,
|
||||||
item_copy_data, register_sales_channels
|
item_copy_data, register_sales_channels, register_global_settings
|
||||||
|
|
||||||
Order events
|
Order events
|
||||||
""""""""""""
|
""""""""""""
|
||||||
@@ -26,11 +26,7 @@ Frontend
|
|||||||
--------
|
--------
|
||||||
|
|
||||||
.. automodule:: pretix.presale.signals
|
.. automodule:: pretix.presale.signals
|
||||||
:members: html_head, html_footer, footer_link, front_page_top, front_page_bottom, fee_calculation_for_cart, contact_form_fields, question_form_fields, checkout_confirm_messages, checkout_confirm_page_content, checkout_all_optional, html_page_header, sass_preamble, sass_postamble
|
:members: html_head, html_footer, footer_link, front_page_top, front_page_bottom, fee_calculation_for_cart, contact_form_fields, question_form_fields, checkout_confirm_messages, checkout_confirm_page_content, checkout_all_optional, html_page_header, sass_preamble, sass_postamble, checkout_flow_steps, order_info, order_meta_from_request
|
||||||
|
|
||||||
|
|
||||||
.. automodule:: pretix.presale.signals
|
|
||||||
:members: order_info, order_meta_from_request
|
|
||||||
|
|
||||||
Request flow
|
Request flow
|
||||||
""""""""""""
|
""""""""""""
|
||||||
|
|||||||
@@ -2,16 +2,6 @@ from django.dispatch import Signal
|
|||||||
|
|
||||||
from pretix.base.signals import DeprecatedSignal, EventPluginSignal
|
from pretix.base.signals import DeprecatedSignal, EventPluginSignal
|
||||||
|
|
||||||
restriction_formset = EventPluginSignal(
|
|
||||||
providing_args=["item"]
|
|
||||||
)
|
|
||||||
"""
|
|
||||||
This signal is sent out to build configuration forms for all restriction formsets
|
|
||||||
(see plugin API documentation for details).
|
|
||||||
|
|
||||||
As with all plugin signals, the ``sender`` keyword argument will contain the event.
|
|
||||||
"""
|
|
||||||
|
|
||||||
html_page_start = Signal(
|
html_page_start = Signal(
|
||||||
providing_args=[]
|
providing_args=[]
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -82,7 +82,8 @@ As with all plugin signals, the ``sender`` keyword argument will contain the eve
|
|||||||
|
|
||||||
checkout_flow_steps = EventPluginSignal()
|
checkout_flow_steps = EventPluginSignal()
|
||||||
"""
|
"""
|
||||||
This signal is sent out to retrieve pages for the checkout flow
|
This signal is sent out to retrieve pages for the checkout flow. Receivers are expected to return
|
||||||
|
a subclass of ``pretix.presale.checkoutflow.BaseCheckoutFlowStep``.
|
||||||
|
|
||||||
As with all plugin signals, the ``sender`` keyword argument will contain the event.
|
As with all plugin signals, the ``sender`` keyword argument will contain the event.
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user