san4ezy / django_softdelete

MIT License
79 stars 21 forks source link

Missing App Name for Django Settings #19

Closed SeSartaj closed 9 months ago

SeSartaj commented 1 year ago

In the documentation, it would be greatly beneficial if you could explicitly mention the app name that should be added to the INSTALLED_APPS setting in the Django project's settings.py file. This addition will greatly assist users in correctly configuring the package within their Django projects.

san4ezy commented 9 months ago

The package name is django_softdelete. However, it is not necessary to add it to the INSTALLED_APPS. This package does not contain its own models, middleware, and so on, to be used directly in your project. Instead, it provides a set of abstract models and object managers that help you implement soft delete functionality with less effort.