Closed alej0varas closed 6 years ago
The user case for this change is that I want to generate the filename and also set a path like
In settings.py
settings.py
def get_filename(file_name, args): return file_name + '/' + args S3DIRECT_DESTINATIONS = { 'assets:background': { 'key': get_filename, 'key_args', 'asset/background' },
Great, can you add it to the readme? (with the stipulation it only does something if 'key' is indeed a function).
Thanks!
I've updated the readme
The user case for this change is that I want to generate the filename and also set a path like
In
settings.py