We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently (version 1.2), StorageDownloadView inherits PathDownloadView. Should be: StorageDownloadView makes it easy to PathDownloadView.
StorageDownloadView
PathDownloadView
get_storage()
get_storage_class
get_storage_kwargs()
get_storage_class(settings.DEFAULT_STORAGE)
storage=FileSystemStorage(location=CUSTOM_LOCATION)
FileSystemStorage
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently (version 1.2),
StorageDownloadView
inheritsPathDownloadView
.Should be:
StorageDownloadView
makes it easy toPathDownloadView
.get_storage()
,get_storage_class
andget_storage_kwargs()
methods toStorageDownloadView
, i.e. make the storage overridable.get_storage()
uses Django'sget_storage_class(settings.DEFAULT_STORAGE)
.PathDownloadView
is aStorageDownloadView
withstorage=FileSystemStorage(location=CUSTOM_LOCATION)
PathDownloadView
.PathDownloadView
which inheritsStorageDownloadView
and usesFileSystemStorage
as a default.The text was updated successfully, but these errors were encountered: