forked from juliomalegria/django-chunked-upload
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the module independent of a User model
* Some projects don't have a User model, and django-chunked-upload should work for them too. * Created a base model (`BaseChunkedUpload`), which doesn't have a FK to the User model. This model will always be abstract. The old `ChunkedUpload` remains unchanged, with a FK to the User model. If it fits your needs, use it making it not abstract on your settings. * If an md5 doesn't match, the request will still fail, but won't mark the chunked upload as FAILED (I removed the FAILED status completely). Bumped up version to `1.1.0`.
- Loading branch information
1 parent
1ce302a
commit 5f4109b
Showing
5 changed files
with
35 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.0.5 | ||
1.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters