mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 04:20:17 +02:00
13 lines
266 B
Python
13 lines
266 B
Python
from django.conf import settings
|
|
|
|
|
|
def alliance_id(request):
|
|
return {'ALLIANCE_ID': settings.ALLIANCE_ID}
|
|
|
|
|
|
def alliance_name(request):
|
|
return {'ALLIANCE_NAME': settings.ALLIANCE_NAME}
|
|
|
|
|
|
def jabber_url(request):
|
|
return {'JABBER_URL': settings.JABBER_URL} |