* refactor: Merge the openedx certs app with lms one Move the certs API from openedx into the lms certificates app. Functionally, this is a no-op. Cleanup will happen in a subsequent commit. This is simply a move.
18 lines
593 B
Python
18 lines
593 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__)
|