├── .coveragerc ├── .gitignore ├── README.md ├── authentication ├── __init__.py ├── admin.py ├── apps.py ├── jwt.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_user_id.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests │ ├── __init__.py │ └── test_models.py ├── urls.py └── views.py ├── helpers ├── __init__.py └── models.py ├── manage.py ├── requirements.txt ├── todolistapi ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py └── todos ├── __init__.py ├── admin.py ├── apps.py ├── migrations ├── 0001_initial.py └── __init__.py ├── models.py ├── pagination.py ├── serializers.py ├── tests.py ├── urls.py └── views.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/README.md -------------------------------------------------------------------------------- /authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /authentication/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/authentication/admin.py -------------------------------------------------------------------------------- /authentication/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/authentication/apps.py -------------------------------------------------------------------------------- /authentication/jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/authentication/jwt.py -------------------------------------------------------------------------------- /authentication/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/authentication/migrations/0001_initial.py -------------------------------------------------------------------------------- /authentication/migrations/0002_alter_user_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/authentication/migrations/0002_alter_user_id.py -------------------------------------------------------------------------------- /authentication/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /authentication/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/authentication/models.py -------------------------------------------------------------------------------- /authentication/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/authentication/serializers.py -------------------------------------------------------------------------------- /authentication/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /authentication/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/authentication/tests/test_models.py -------------------------------------------------------------------------------- /authentication/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/authentication/urls.py -------------------------------------------------------------------------------- /authentication/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/authentication/views.py -------------------------------------------------------------------------------- /helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/helpers/models.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/requirements.txt -------------------------------------------------------------------------------- /todolistapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todolistapi/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/todolistapi/asgi.py -------------------------------------------------------------------------------- /todolistapi/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/todolistapi/settings.py -------------------------------------------------------------------------------- /todolistapi/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/todolistapi/urls.py -------------------------------------------------------------------------------- /todolistapi/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/todolistapi/wsgi.py -------------------------------------------------------------------------------- /todos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todos/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/todos/admin.py -------------------------------------------------------------------------------- /todos/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/todos/apps.py -------------------------------------------------------------------------------- /todos/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/todos/migrations/0001_initial.py -------------------------------------------------------------------------------- /todos/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todos/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/todos/models.py -------------------------------------------------------------------------------- /todos/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/todos/pagination.py -------------------------------------------------------------------------------- /todos/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/todos/serializers.py -------------------------------------------------------------------------------- /todos/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/todos/tests.py -------------------------------------------------------------------------------- /todos/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/todos/urls.py -------------------------------------------------------------------------------- /todos/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryceTruly/django-rest-api/HEAD/todos/views.py --------------------------------------------------------------------------------