8 lines
222 B
Python
8 lines
222 B
Python
from django.conf import settings
|
|
|
|
def public_download_url(file, **kwargs):
|
|
"""
|
|
Directs downloads to a handler at settings.PUBLIC_DOWNLOADS_URL_BASE
|
|
"""
|
|
return settings.PUBLIC_DOWNLOADS_URL_BASE + file.name
|