Commit 4f3a9ffa by muhammad-ammar

coditional use of settings

parent 070449c5
...@@ -17,6 +17,9 @@ def get_video_image_storage(): ...@@ -17,6 +17,9 @@ def get_video_image_storage():
""" """
Return the configured django storage backend. Return the configured django storage backend.
""" """
return get_storage_class( if hasattr(settings, 'VIDEO_IMAGE_SETTINGS'):
settings.VIDEO_IMAGE_SETTINGS.get('STORAGE_CLASS'), return get_storage_class(
)(**settings.VIDEO_IMAGE_SETTINGS.get('STORAGE_KWARGS', {})) settings.VIDEO_IMAGE_SETTINGS.get('STORAGE_CLASS'),
)(**settings.VIDEO_IMAGE_SETTINGS.get('STORAGE_KWARGS', {}))
else:
return get_storage_class()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment