[APER-2344] We would like to start consuming Certificate related events in Credentials from the event bus. This PR starts the process by publishing CERTIFICATE_CREATED events to the event bus. It also introduces a new feature flag (`SEND_CERTIFICATE_CREATED_SIGNAL`) to gate the functionality.
31 lines
1.2 KiB
Python
31 lines
1.2 KiB
Python
"""
|
|
This module contains various configuration settings via
|
|
waffle switches for the Certificates app.
|
|
"""
|
|
|
|
from edx_toggles.toggles import SettingToggle, WaffleSwitch
|
|
|
|
# Namespace
|
|
WAFFLE_NAMESPACE = 'certificates'
|
|
|
|
# .. toggle_name: certificates.auto_certificate_generation
|
|
# .. toggle_implementation: WaffleSwitch
|
|
# .. toggle_default: False
|
|
# .. toggle_description: This toggle will enable certificates to be automatically generated
|
|
# .. toggle_use_cases: open_edx
|
|
# .. toggle_creation_date: 2017-09-14
|
|
AUTO_CERTIFICATE_GENERATION = WaffleSwitch(f"{WAFFLE_NAMESPACE}.auto_certificate_generation", __name__)
|
|
|
|
|
|
# .. toggle_name: SEND_CERTIFICATE_CREATED_SIGNAL
|
|
# .. toggle_implementation: SettingToggle
|
|
# .. toggle_default: False
|
|
# .. toggle_description: When True, the system will publish `CERTIFICATE_CREATED` signals to the event bus. The
|
|
# `CERTIFICATE_CREATED` signal is emit when a certificate has been awarded to a learner and the creation process has
|
|
# completed.
|
|
# .. toggle_use_cases: temporary
|
|
# .. toggle_creation_date: 2023-04-11
|
|
# .. toggle_target_removal_date: 2023-07-31
|
|
# .. toggle_tickets: TODO
|
|
SEND_CERTIFICATE_CREATED_SIGNAL = SettingToggle('SEND_CERTIFICATE_CREATED_SIGNAL', default=False, module_name=__name__)
|