├── .flake8 ├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── drf_jsonmask ├── __init__.py ├── constants.py ├── decorators.py ├── serializers.py ├── utils.py └── views.py ├── hatch.toml ├── pyproject.toml └── tests ├── __init__.py ├── conftest.py ├── factories.py ├── models.py ├── serializers.py ├── settings.py ├── test_field_pruning.py ├── test_views.py ├── urls.py ├── utils.py └── views.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/README.md -------------------------------------------------------------------------------- /drf_jsonmask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/drf_jsonmask/__init__.py -------------------------------------------------------------------------------- /drf_jsonmask/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/drf_jsonmask/constants.py -------------------------------------------------------------------------------- /drf_jsonmask/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/drf_jsonmask/decorators.py -------------------------------------------------------------------------------- /drf_jsonmask/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/drf_jsonmask/serializers.py -------------------------------------------------------------------------------- /drf_jsonmask/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/drf_jsonmask/utils.py -------------------------------------------------------------------------------- /drf_jsonmask/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/drf_jsonmask/views.py -------------------------------------------------------------------------------- /hatch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/hatch.toml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/tests/factories.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/tests/serializers.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_field_pruning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/tests/test_field_pruning.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jllorencetti/drf-jsonmask/HEAD/tests/views.py --------------------------------------------------------------------------------