Merge pull request #1037 from uhurusurfa/unstable

Add django-cleanup app to support deleting file system files
This commit is contained in:
Garret Wassermann 2022-07-23 17:20:41 -04:00 committed by GitHub
commit 148eff8b7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -63,6 +63,7 @@ errors with trying to create User settings.
'pinax.teams', # Team support
'reversion', # Required by pinax-teams
'rest_framework', # required for the API
'django_cleanup.apps.CleanupConfig', # Remove this if you do NOT want to delete files on the file system when the associated record is deleted in the database
'helpdesk', # This is us!
)

View File

@ -12,3 +12,4 @@ six
pinax_teams
djangorestframework
django-model-utils
django-cleanup