7 lines
168 B
Python
7 lines
168 B
Python
from django.conf import settings
|
|
|
|
|
|
def use_spa_ui() -> bool:
|
|
"""Central read-point for SPA cutover flag."""
|
|
return bool(getattr(settings, "USE_SPA_UI", False))
|