├── .github └── workflows │ ├── pythonpublish.yml │ └── runtests.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── README.md ├── drfpasswordless ├── __init__.py ├── __version__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200122_0424.py │ ├── 0003_callbacktoken_type.py │ ├── 0004_auto_20200125_0853.py │ ├── 0005_auto_20201117_0410.py │ └── __init__.py ├── models.py ├── serializers.py ├── services.py ├── settings.py ├── signals.py ├── templates │ ├── passwordless_default_token_email.html │ └── passwordless_default_verification_token_email.html ├── urls.py ├── utils.py └── views.py ├── runtests.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── models.py ├── test_authentication.py ├── test_settings.py ├── test_verification.py └── urls.py └── tox.ini /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.github/workflows/runtests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/.github/workflows/runtests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/README.md -------------------------------------------------------------------------------- /drfpasswordless/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/__init__.py -------------------------------------------------------------------------------- /drfpasswordless/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/__version__.py -------------------------------------------------------------------------------- /drfpasswordless/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/admin.py -------------------------------------------------------------------------------- /drfpasswordless/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/apps.py -------------------------------------------------------------------------------- /drfpasswordless/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/migrations/0001_initial.py -------------------------------------------------------------------------------- /drfpasswordless/migrations/0002_auto_20200122_0424.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/migrations/0002_auto_20200122_0424.py -------------------------------------------------------------------------------- /drfpasswordless/migrations/0003_callbacktoken_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/migrations/0003_callbacktoken_type.py -------------------------------------------------------------------------------- /drfpasswordless/migrations/0004_auto_20200125_0853.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/migrations/0004_auto_20200125_0853.py -------------------------------------------------------------------------------- /drfpasswordless/migrations/0005_auto_20201117_0410.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/migrations/0005_auto_20201117_0410.py -------------------------------------------------------------------------------- /drfpasswordless/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drfpasswordless/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/models.py -------------------------------------------------------------------------------- /drfpasswordless/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/serializers.py -------------------------------------------------------------------------------- /drfpasswordless/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/services.py -------------------------------------------------------------------------------- /drfpasswordless/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/settings.py -------------------------------------------------------------------------------- /drfpasswordless/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/signals.py -------------------------------------------------------------------------------- /drfpasswordless/templates/passwordless_default_token_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/templates/passwordless_default_token_email.html -------------------------------------------------------------------------------- /drfpasswordless/templates/passwordless_default_verification_token_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/templates/passwordless_default_verification_token_email.html -------------------------------------------------------------------------------- /drfpasswordless/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/urls.py -------------------------------------------------------------------------------- /drfpasswordless/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/utils.py -------------------------------------------------------------------------------- /drfpasswordless/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/drfpasswordless/views.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/test_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/tests/test_authentication.py -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tests/test_verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/tests/test_verification.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronn/django-rest-framework-passwordless/HEAD/tox.ini --------------------------------------------------------------------------------