By explicitly importing the legacy namespace classes, we make it clear that we are using soon-to-be-deprecated classes. We will then be able to start removing the legacy classes, one module at a time.
10 lines
219 B
Python
10 lines
219 B
Python
"""
|
|
Student app helpers and settings
|
|
"""
|
|
|
|
|
|
from edx_toggles.toggles import LegacyWaffleSwitchNamespace
|
|
|
|
# Namespace for student app waffle switches
|
|
STUDENT_WAFFLE_NAMESPACE = LegacyWaffleSwitchNamespace(name='student')
|