6 lines
121 B
Python
6 lines
121 B
Python
|
import os
|
||
|
|
||
|
|
||
|
def authorized_mails(request):
|
||
|
return {'authorized_mails': os.getenv('AUTHORIZED_MAILS', '').split(',')}
|