* uses openedx waffle_utils instead of straight waffle * adds student.STUDENT_WAFFLE_NAMESPACE * improves comment Also changed the waffle switch to use _ instead of . to respect current conventions.
9 lines
223 B
Python
9 lines
223 B
Python
"""
|
|
Student app helpers and settings
|
|
"""
|
|
from openedx.core.djangoapps.waffle_utils import WaffleSwitchNamespace
|
|
|
|
|
|
# Namespace for student app waffle switches
|
|
STUDENT_WAFFLE_NAMESPACE = WaffleSwitchNamespace(name='student')
|