1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 01:21:21 +03:00
awx/lib/ui/context_processors.py

7 lines
132 B
Python

from django.conf import settings as django_settings
def settings(request):
return {
'settings': django_settings,
}