mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30:15 +02:00
9 lines
158 B
Python
9 lines
158 B
Python
from django.conf import settings
|
|
|
|
|
|
def auth_settings(request):
|
|
return {
|
|
'DOMAIN': settings.DOMAIN,
|
|
'SITE_NAME': settings.SITE_NAME,
|
|
}
|