├── .coveragerc ├── .github ├── ISSUE_TEMPLATE.md └── stale.yml ├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── CHANGES.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── README.rst ├── demo.gif ├── docs ├── api.md ├── changelog.md ├── community.md ├── contributing.md ├── contributors.md ├── data │ └── api.yml ├── images │ ├── demo.jpg │ ├── favicon.ico │ └── graphql_logo.svg ├── index.md ├── installation.md ├── overriding-email-templates.md ├── pre_build.py ├── quickstart.md ├── relay.md ├── requirements.txt └── settings.md ├── graphql_auth ├── __init__.py ├── apps.py ├── backends.py ├── bases.py ├── constants.py ├── decorators.py ├── exceptions.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── mixins.py ├── models.py ├── mutations.py ├── relay.py ├── schema.py ├── settings.py ├── shortcuts.py ├── signals.py ├── templates │ └── email │ │ ├── activation_email.html │ │ ├── activation_subject.txt │ │ ├── password_reset_email.html │ │ ├── password_reset_subject.txt │ │ ├── password_set_email.html │ │ └── password_set_subject.txt ├── types.py └── utils.py ├── make_migrations.py ├── migrations_settings.py ├── mkdocs.yml ├── quickstart ├── manage.py ├── quickstart │ ├── __init__.py │ ├── asgi.py │ ├── schema.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── requirements.txt ├── users.json └── users │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── setup.cfg ├── setup.py ├── testproject ├── __init__.py ├── manage.py ├── pseudo_async_email_support.py ├── schema.py ├── settings.py ├── templates │ └── email │ │ ├── activation_email.html │ │ ├── activation_subject.txt │ │ ├── password_reset_email.html │ │ └── password_reset_subject.txt ├── urls.py └── users.json ├── tests ├── __init__.py ├── decorators.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── schema.py ├── settings.py ├── settings_b.py ├── testCases.py ├── test_app_settings.py ├── test_archive_account.py ├── test_delete_account.py ├── test_login.py ├── test_password_change.py ├── test_password_reset.py ├── test_password_set.py ├── test_query.py ├── test_refresh_token.py ├── test_register.py ├── test_remove_secondary_email.py ├── test_resend_activation_email.py ├── test_revoke_token.py ├── test_send_password_reset_email.py ├── test_send_secondary_email_activation.py ├── test_swap_emails.py ├── test_update_account.py ├── test_verify_account.py ├── test_verify_secondary_email.py ├── test_verify_token.py └── types.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = */tests/* 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/README.rst -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/demo.gif -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/community.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/contributors.md -------------------------------------------------------------------------------- /docs/data/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/data/api.yml -------------------------------------------------------------------------------- /docs/images/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/images/demo.jpg -------------------------------------------------------------------------------- /docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/images/favicon.ico -------------------------------------------------------------------------------- /docs/images/graphql_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/images/graphql_logo.svg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/overriding-email-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/overriding-email-templates.md -------------------------------------------------------------------------------- /docs/pre_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/pre_build.py -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/relay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/relay.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/docs/settings.md -------------------------------------------------------------------------------- /graphql_auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/__init__.py -------------------------------------------------------------------------------- /graphql_auth/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/apps.py -------------------------------------------------------------------------------- /graphql_auth/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/backends.py -------------------------------------------------------------------------------- /graphql_auth/bases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/bases.py -------------------------------------------------------------------------------- /graphql_auth/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/constants.py -------------------------------------------------------------------------------- /graphql_auth/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/decorators.py -------------------------------------------------------------------------------- /graphql_auth/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/exceptions.py -------------------------------------------------------------------------------- /graphql_auth/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/forms.py -------------------------------------------------------------------------------- /graphql_auth/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/migrations/0001_initial.py -------------------------------------------------------------------------------- /graphql_auth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql_auth/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/mixins.py -------------------------------------------------------------------------------- /graphql_auth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/models.py -------------------------------------------------------------------------------- /graphql_auth/mutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/mutations.py -------------------------------------------------------------------------------- /graphql_auth/relay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/relay.py -------------------------------------------------------------------------------- /graphql_auth/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/schema.py -------------------------------------------------------------------------------- /graphql_auth/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/settings.py -------------------------------------------------------------------------------- /graphql_auth/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/shortcuts.py -------------------------------------------------------------------------------- /graphql_auth/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/signals.py -------------------------------------------------------------------------------- /graphql_auth/templates/email/activation_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/templates/email/activation_email.html -------------------------------------------------------------------------------- /graphql_auth/templates/email/activation_subject.txt: -------------------------------------------------------------------------------- 1 | Activate your account on {{ site_name }} 2 | -------------------------------------------------------------------------------- /graphql_auth/templates/email/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/templates/email/password_reset_email.html -------------------------------------------------------------------------------- /graphql_auth/templates/email/password_reset_subject.txt: -------------------------------------------------------------------------------- 1 | Reset your password on {{ site_name }} 2 | -------------------------------------------------------------------------------- /graphql_auth/templates/email/password_set_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/templates/email/password_set_email.html -------------------------------------------------------------------------------- /graphql_auth/templates/email/password_set_subject.txt: -------------------------------------------------------------------------------- 1 | Set your password on {{ site_name }} -------------------------------------------------------------------------------- /graphql_auth/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/types.py -------------------------------------------------------------------------------- /graphql_auth/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/graphql_auth/utils.py -------------------------------------------------------------------------------- /make_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/make_migrations.py -------------------------------------------------------------------------------- /migrations_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/migrations_settings.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /quickstart/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/quickstart/manage.py -------------------------------------------------------------------------------- /quickstart/quickstart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /quickstart/quickstart/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/quickstart/quickstart/asgi.py -------------------------------------------------------------------------------- /quickstart/quickstart/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/quickstart/quickstart/schema.py -------------------------------------------------------------------------------- /quickstart/quickstart/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/quickstart/quickstart/settings.py -------------------------------------------------------------------------------- /quickstart/quickstart/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/quickstart/quickstart/urls.py -------------------------------------------------------------------------------- /quickstart/quickstart/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/quickstart/quickstart/wsgi.py -------------------------------------------------------------------------------- /quickstart/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/quickstart/requirements.txt -------------------------------------------------------------------------------- /quickstart/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/quickstart/users.json -------------------------------------------------------------------------------- /quickstart/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /quickstart/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/quickstart/users/admin.py -------------------------------------------------------------------------------- /quickstart/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/quickstart/users/apps.py -------------------------------------------------------------------------------- /quickstart/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/quickstart/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /quickstart/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /quickstart/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/quickstart/users/models.py -------------------------------------------------------------------------------- /quickstart/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/quickstart/users/tests.py -------------------------------------------------------------------------------- /quickstart/users/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/setup.py -------------------------------------------------------------------------------- /testproject/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /testproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/testproject/manage.py -------------------------------------------------------------------------------- /testproject/pseudo_async_email_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/testproject/pseudo_async_email_support.py -------------------------------------------------------------------------------- /testproject/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/testproject/schema.py -------------------------------------------------------------------------------- /testproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/testproject/settings.py -------------------------------------------------------------------------------- /testproject/templates/email/activation_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/testproject/templates/email/activation_email.html -------------------------------------------------------------------------------- /testproject/templates/email/activation_subject.txt: -------------------------------------------------------------------------------- 1 | Activate your account on {{ site_name }} WORKED! 2 | -------------------------------------------------------------------------------- /testproject/templates/email/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/testproject/templates/email/password_reset_email.html -------------------------------------------------------------------------------- /testproject/templates/email/password_reset_subject.txt: -------------------------------------------------------------------------------- 1 | Reset your password on {{ site_name }} 2 | -------------------------------------------------------------------------------- /testproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/testproject/urls.py -------------------------------------------------------------------------------- /testproject/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/testproject/users.json -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/decorators.py -------------------------------------------------------------------------------- /tests/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/schema.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/settings_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/settings_b.py -------------------------------------------------------------------------------- /tests/testCases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/testCases.py -------------------------------------------------------------------------------- /tests/test_app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_app_settings.py -------------------------------------------------------------------------------- /tests/test_archive_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_archive_account.py -------------------------------------------------------------------------------- /tests/test_delete_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_delete_account.py -------------------------------------------------------------------------------- /tests/test_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_login.py -------------------------------------------------------------------------------- /tests/test_password_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_password_change.py -------------------------------------------------------------------------------- /tests/test_password_reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_password_reset.py -------------------------------------------------------------------------------- /tests/test_password_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_password_set.py -------------------------------------------------------------------------------- /tests/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_query.py -------------------------------------------------------------------------------- /tests/test_refresh_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_refresh_token.py -------------------------------------------------------------------------------- /tests/test_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_register.py -------------------------------------------------------------------------------- /tests/test_remove_secondary_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_remove_secondary_email.py -------------------------------------------------------------------------------- /tests/test_resend_activation_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_resend_activation_email.py -------------------------------------------------------------------------------- /tests/test_revoke_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_revoke_token.py -------------------------------------------------------------------------------- /tests/test_send_password_reset_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_send_password_reset_email.py -------------------------------------------------------------------------------- /tests/test_send_secondary_email_activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_send_secondary_email_activation.py -------------------------------------------------------------------------------- /tests/test_swap_emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_swap_emails.py -------------------------------------------------------------------------------- /tests/test_update_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_update_account.py -------------------------------------------------------------------------------- /tests/test_verify_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_verify_account.py -------------------------------------------------------------------------------- /tests/test_verify_secondary_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_verify_secondary_email.py -------------------------------------------------------------------------------- /tests/test_verify_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/test_verify_token.py -------------------------------------------------------------------------------- /tests/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tests/types.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroBern/django-graphql-auth/HEAD/tox.ini --------------------------------------------------------------------------------