5 lines
125 B
Python
5 lines
125 B
Python
from django.conf import settings
|
|
|
|
|
|
def authorized_mails(request):
|
|
return {'authorized_mails': settings.AUTHORIZED_MAILS}
|