├── .coveragerc ├── .github └── workflows │ ├── style.yml │ └── tests.yml ├── .gitignore ├── AUTHORS ├── LICENSE ├── README.md ├── django_scopes ├── __init__.py ├── exceptions.py ├── forms.py ├── manager.py └── state.py ├── requirements_dev.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── settings.py ├── test_query.py └── testapp ├── __init__.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py ├── 0002_bookmark.py ├── 0003_commentgroup.py └── __init__.py ├── models.py ├── urls.py └── wsgi.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/.github/workflows/style.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/README.md -------------------------------------------------------------------------------- /django_scopes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/django_scopes/__init__.py -------------------------------------------------------------------------------- /django_scopes/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/django_scopes/exceptions.py -------------------------------------------------------------------------------- /django_scopes/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/django_scopes/forms.py -------------------------------------------------------------------------------- /django_scopes/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/django_scopes/manager.py -------------------------------------------------------------------------------- /django_scopes/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/django_scopes/state.py -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/tests/test_query.py -------------------------------------------------------------------------------- /tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/tests/testapp/apps.py -------------------------------------------------------------------------------- /tests/testapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/tests/testapp/forms.py -------------------------------------------------------------------------------- /tests/testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/tests/testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/testapp/migrations/0002_bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/tests/testapp/migrations/0002_bookmark.py -------------------------------------------------------------------------------- /tests/testapp/migrations/0003_commentgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/tests/testapp/migrations/0003_commentgroup.py -------------------------------------------------------------------------------- /tests/testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/tests/testapp/models.py -------------------------------------------------------------------------------- /tests/testapp/urls.py: -------------------------------------------------------------------------------- 1 | urlpatterns = [ 2 | ] 3 | -------------------------------------------------------------------------------- /tests/testapp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-scopes/HEAD/tests/testapp/wsgi.py --------------------------------------------------------------------------------