├── .github └── workflows │ └── tests.yml ├── .gitignore ├── Changelog.md ├── Makefile ├── README.md ├── generic_relations ├── __init__.py ├── relations.py ├── serializers.py └── tests │ ├── __init__.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── test_relations.py │ └── test_serializers.py ├── manage.py ├── setup.cfg ├── setup.py ├── testsettings.py └── tox.ini /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LilyFirefly/rest-framework-generic-relations/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LilyFirefly/rest-framework-generic-relations/HEAD/.gitignore -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LilyFirefly/rest-framework-generic-relations/HEAD/Changelog.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LilyFirefly/rest-framework-generic-relations/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LilyFirefly/rest-framework-generic-relations/HEAD/README.md -------------------------------------------------------------------------------- /generic_relations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LilyFirefly/rest-framework-generic-relations/HEAD/generic_relations/__init__.py -------------------------------------------------------------------------------- /generic_relations/relations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LilyFirefly/rest-framework-generic-relations/HEAD/generic_relations/relations.py -------------------------------------------------------------------------------- /generic_relations/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LilyFirefly/rest-framework-generic-relations/HEAD/generic_relations/serializers.py -------------------------------------------------------------------------------- /generic_relations/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generic_relations/tests/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LilyFirefly/rest-framework-generic-relations/HEAD/generic_relations/tests/migrations/0001_initial.py -------------------------------------------------------------------------------- /generic_relations/tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generic_relations/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LilyFirefly/rest-framework-generic-relations/HEAD/generic_relations/tests/models.py -------------------------------------------------------------------------------- /generic_relations/tests/test_relations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LilyFirefly/rest-framework-generic-relations/HEAD/generic_relations/tests/test_relations.py -------------------------------------------------------------------------------- /generic_relations/tests/test_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LilyFirefly/rest-framework-generic-relations/HEAD/generic_relations/tests/test_serializers.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LilyFirefly/rest-framework-generic-relations/HEAD/manage.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LilyFirefly/rest-framework-generic-relations/HEAD/setup.py -------------------------------------------------------------------------------- /testsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LilyFirefly/rest-framework-generic-relations/HEAD/testsettings.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LilyFirefly/rest-framework-generic-relations/HEAD/tox.ini --------------------------------------------------------------------------------