17 lines
592 B
Python
17 lines
592 B
Python
"""
|
|
This module contains various configuration settings via
|
|
waffle switches for the Certificates app.
|
|
"""
|
|
from edx_toggles.toggles import 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__)
|