├── .coveragerc ├── .envrc ├── .github ├── copilot-instructions.md └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── .travis.yml ├── .vscode └── settings.json ├── CHANGES ├── CONTRIBUTE.md ├── CONTRIBUTING.md ├── DOCKER.md ├── LICENSE.AGPL ├── LICENSE.BSD ├── LICENSE.md ├── MANIFEST.in ├── Makefile ├── QUICKREF.md ├── README.md ├── artwork ├── flask-restless-small.svg └── flask-restless.svg ├── docker-compose.yml ├── docs ├── Makefile ├── _static │ ├── flask-restless-small.png │ └── flask-restless.png ├── _templates │ ├── sidebarintro.html │ └── sidebarlogo.html ├── api.rst ├── basicusage.rst ├── changelog.rst ├── conf.py ├── creating.rst ├── customizing.rst ├── deleting.rst ├── fetching.rst ├── flaskstyle.sty ├── index.rst ├── installation.rst ├── license.rst ├── logo.png ├── make.bat ├── quickstart.rst ├── requestformat.rst ├── similarprojects.rst ├── updating.rst └── updatingrelationships.rst ├── examples ├── README ├── chinook │ ├── chinook.db │ └── chinook.py ├── clients │ ├── curl.sh │ ├── jquery │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── templates │ │ │ └── index.html │ └── requests_client.py ├── quickstart.py └── server_configurations │ └── authentication │ ├── __init__.py │ ├── __main__.py │ └── templates │ ├── index.html │ └── login.html ├── flask_restless ├── __init__.py ├── exceptions.py ├── helpers.py ├── manager.py ├── registry.py ├── search.py ├── serialization.py ├── typehints.py └── views │ ├── __init__.py │ ├── base.py │ ├── helpers.py │ ├── relationships.py │ └── resources.py ├── pyproject.toml ├── pytest.ini ├── requirements ├── dev.txt ├── doc.txt ├── packaging.txt ├── test-cpython.txt ├── test-pypy.txt └── test.txt ├── setup-dev.sh ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── helpers.py ├── integration │ ├── __init__.py │ ├── test_mysq_flask_sqlalchemy.py │ └── test_mysql.py ├── jsonapi-schema.json ├── test_fetching.py ├── test_filtering.py ├── test_flask_sqlalchemy.py ├── test_jsonapi │ ├── __init__.py │ ├── models.py │ ├── test_creating_resources.py │ ├── test_deleting_resources.py │ ├── test_document_structure.py │ ├── test_fetching_data.py │ ├── test_inclusion.py │ ├── test_pagination.py │ ├── test_server_responsibilities.py │ ├── test_sorting.py │ ├── test_sparse_fieldset.py │ ├── test_updating_relationships.py │ └── test_updating_resources.py ├── test_manager.py ├── test_metadata.py ├── test_performance.py ├── test_serialization.py ├── test_serializer.py ├── test_updating.py ├── test_updatingrelationship.py └── test_validation.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/.coveragerc -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/.envrc -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/CHANGES -------------------------------------------------------------------------------- /CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/CONTRIBUTE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DOCKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/DOCKER.md -------------------------------------------------------------------------------- /LICENSE.AGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/LICENSE.AGPL -------------------------------------------------------------------------------- /LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/LICENSE.BSD -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/Makefile -------------------------------------------------------------------------------- /QUICKREF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/QUICKREF.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/README.md -------------------------------------------------------------------------------- /artwork/flask-restless-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/artwork/flask-restless-small.svg -------------------------------------------------------------------------------- /artwork/flask-restless.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/artwork/flask-restless.svg -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/flask-restless-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/_static/flask-restless-small.png -------------------------------------------------------------------------------- /docs/_static/flask-restless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/_static/flask-restless.png -------------------------------------------------------------------------------- /docs/_templates/sidebarintro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/_templates/sidebarintro.html -------------------------------------------------------------------------------- /docs/_templates/sidebarlogo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/_templates/sidebarlogo.html -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/basicusage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/basicusage.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. currentmodule:: flask.ext.restless 2 | 3 | .. include:: ../CHANGES 4 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/creating.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/creating.rst -------------------------------------------------------------------------------- /docs/customizing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/customizing.rst -------------------------------------------------------------------------------- /docs/deleting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/deleting.rst -------------------------------------------------------------------------------- /docs/fetching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/fetching.rst -------------------------------------------------------------------------------- /docs/flaskstyle.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/flaskstyle.sty -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- 1 | _static/flask-restless.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/requestformat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/requestformat.rst -------------------------------------------------------------------------------- /docs/similarprojects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/similarprojects.rst -------------------------------------------------------------------------------- /docs/updating.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/updating.rst -------------------------------------------------------------------------------- /docs/updatingrelationships.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/docs/updatingrelationships.rst -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/examples/README -------------------------------------------------------------------------------- /examples/chinook/chinook.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/examples/chinook/chinook.db -------------------------------------------------------------------------------- /examples/chinook/chinook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/examples/chinook/chinook.py -------------------------------------------------------------------------------- /examples/clients/curl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/examples/clients/curl.sh -------------------------------------------------------------------------------- /examples/clients/jquery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/clients/jquery/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/examples/clients/jquery/__main__.py -------------------------------------------------------------------------------- /examples/clients/jquery/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/examples/clients/jquery/templates/index.html -------------------------------------------------------------------------------- /examples/clients/requests_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/examples/clients/requests_client.py -------------------------------------------------------------------------------- /examples/quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/examples/quickstart.py -------------------------------------------------------------------------------- /examples/server_configurations/authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/server_configurations/authentication/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/examples/server_configurations/authentication/__main__.py -------------------------------------------------------------------------------- /examples/server_configurations/authentication/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/examples/server_configurations/authentication/templates/index.html -------------------------------------------------------------------------------- /examples/server_configurations/authentication/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/examples/server_configurations/authentication/templates/login.html -------------------------------------------------------------------------------- /flask_restless/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/flask_restless/__init__.py -------------------------------------------------------------------------------- /flask_restless/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/flask_restless/exceptions.py -------------------------------------------------------------------------------- /flask_restless/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/flask_restless/helpers.py -------------------------------------------------------------------------------- /flask_restless/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/flask_restless/manager.py -------------------------------------------------------------------------------- /flask_restless/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/flask_restless/registry.py -------------------------------------------------------------------------------- /flask_restless/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/flask_restless/search.py -------------------------------------------------------------------------------- /flask_restless/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/flask_restless/serialization.py -------------------------------------------------------------------------------- /flask_restless/typehints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/flask_restless/typehints.py -------------------------------------------------------------------------------- /flask_restless/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/flask_restless/views/__init__.py -------------------------------------------------------------------------------- /flask_restless/views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/flask_restless/views/base.py -------------------------------------------------------------------------------- /flask_restless/views/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/flask_restless/views/helpers.py -------------------------------------------------------------------------------- /flask_restless/views/relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/flask_restless/views/relationships.py -------------------------------------------------------------------------------- /flask_restless/views/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/flask_restless/views/resources.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/requirements/doc.txt -------------------------------------------------------------------------------- /requirements/packaging.txt: -------------------------------------------------------------------------------- 1 | -r dev.txt 2 | wheel 3 | twine 4 | -------------------------------------------------------------------------------- /requirements/test-cpython.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/requirements/test-cpython.txt -------------------------------------------------------------------------------- /requirements/test-pypy.txt: -------------------------------------------------------------------------------- 1 | -r test.txt 2 | psycopg2cffi 3 | -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/requirements/test.txt -------------------------------------------------------------------------------- /setup-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/setup-dev.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/integration/__init__.py -------------------------------------------------------------------------------- /tests/integration/test_mysq_flask_sqlalchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/integration/test_mysq_flask_sqlalchemy.py -------------------------------------------------------------------------------- /tests/integration/test_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/integration/test_mysql.py -------------------------------------------------------------------------------- /tests/jsonapi-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/jsonapi-schema.json -------------------------------------------------------------------------------- /tests/test_fetching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_fetching.py -------------------------------------------------------------------------------- /tests/test_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_filtering.py -------------------------------------------------------------------------------- /tests/test_flask_sqlalchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_flask_sqlalchemy.py -------------------------------------------------------------------------------- /tests/test_jsonapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_jsonapi/__init__.py -------------------------------------------------------------------------------- /tests/test_jsonapi/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_jsonapi/models.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_creating_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_jsonapi/test_creating_resources.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_deleting_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_jsonapi/test_deleting_resources.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_document_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_jsonapi/test_document_structure.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_fetching_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_jsonapi/test_fetching_data.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_inclusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_jsonapi/test_inclusion.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_jsonapi/test_pagination.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_server_responsibilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_jsonapi/test_server_responsibilities.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_jsonapi/test_sorting.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_sparse_fieldset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_jsonapi/test_sparse_fieldset.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_updating_relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_jsonapi/test_updating_relationships.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_updating_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_jsonapi/test_updating_resources.py -------------------------------------------------------------------------------- /tests/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_manager.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_performance.py -------------------------------------------------------------------------------- /tests/test_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_serialization.py -------------------------------------------------------------------------------- /tests/test_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_serializer.py -------------------------------------------------------------------------------- /tests/test_updating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_updating.py -------------------------------------------------------------------------------- /tests/test_updatingrelationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_updatingrelationship.py -------------------------------------------------------------------------------- /tests/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tests/test_validation.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrevutskyi/flask-restless-ng/HEAD/tox.ini --------------------------------------------------------------------------------