You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change all imports from chunked_upload to django_chunk_upload (incl. migration files)
Change class name ChunkedUploadView to ChunkUploadView (incl. import)
Change class name ChunkedUploadError to ChunkUploadError (incl. import)
Change class name ChunkedUploadCompleteView to ChunkUploadCompleteView (incl. import)
Change class name ChunkedUpload to ChunkUpload (incl. import)
Change method name is_valid_chunked_upload to is_valid_chunk_upload (if you use it)
Change method name create_chunked_upload to create_chunk_upload (if you use it)
Change in the settings in INSTALLED_APPS value chunked_upload to django_chunk_upload
Prefix all used settings variables with DJANGO and change CHUNKED to CHUNK (for example: **DJANGO_CHUNK**_UPLOAD_USE_TEMP_STORAGE instead of **CHUNKED_UPLOAD**_USE_TEMP_STORAGE)
add relevant details regarding the migration from django-chunked-upload to django-chunk-upload in the doc/readme section
The text was updated successfully, but these errors were encountered: