staging into master #69

Merged
corbz merged 38 commits from staging into master 2024-10-14 22:34:03 +00:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit a2bff7b7b4 - Show all commits

View File

@ -1,6 +1,6 @@
from django.conf import settings
def cfg_assets_root(request):
def cfg_client_id(request):
return { 'ASSETS_ROOT' : settings.ASSETS_ROOT }
return { "discordClientId": settings.DISCORD_KEY }

View File

@ -86,6 +86,7 @@ TEMPLATES = [
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
"apps.context_processors.cfg_client_id"
],
},
},