mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 21:43:21 +00:00
10 lines
226 B
Python
10 lines
226 B
Python
from django.conf import settings
|
|
|
|
def add_settings(request):
|
|
return {
|
|
'full_navbar': settings.FULL_NAVBAR,
|
|
|
|
# c.f. Django's STATIC_URL variable
|
|
'static_hidden': '/static/4nrjx8cwce2bka8r/',
|
|
}
|