mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-20 07:43:35 -05:00
7 lines
132 B
Python
7 lines
132 B
Python
from django.conf import settings as django_settings
|
|
|
|
def settings(request):
|
|
return {
|
|
'settings': django_settings,
|
|
}
|