LICENSE
MANIFEST.in
README.rst
setup.cfg
setup.py
django_simple_api_auth/__init__.py
django_simple_api_auth/admin.py
django_simple_api_auth/apps.py
django_simple_api_auth/errors.py
django_simple_api_auth/models.py
django_simple_api_auth/tests.py
django_simple_api_auth/views.py
django_simple_api_auth.egg-info/PKG-INFO
django_simple_api_auth.egg-info/SOURCES.txt
django_simple_api_auth.egg-info/dependency_links.txt
django_simple_api_auth.egg-info/requires.txt
django_simple_api_auth.egg-info/top_level.txt
django_simple_api_auth/api/__init__.py
django_simple_api_auth/api/graphql/__init__.py
django_simple_api_auth/api/graphql/ariadne/__init__.py
django_simple_api_auth/api/graphql/ariadne/mixins.py
django_simple_api_auth/api/graphql/ariadne/mutations.py
django_simple_api_auth/api/graphql/ariadne/queries.py
django_simple_api_auth/api/graphql/graphene/__init__.py
django_simple_api_auth/api/graphql/graphene/mutations.py
django_simple_api_auth/api/graphql/graphene/queries.py
django_simple_api_auth/api/graphql/graphene/types.py
django_simple_api_auth/api/rest/__init__.py
django_simple_api_auth/api/rest/v1_0/__init__.py
django_simple_api_auth/api/rest/v1_0/mixins.py
django_simple_api_auth/api/rest/v1_0/serializers.py
django_simple_api_auth/api/rest/v1_0/viewsets.py
django_simple_api_auth/business_logic/__init__.py
django_simple_api_auth/business_logic/user_create.py
django_simple_api_auth/business_logic/user_login.py
django_simple_api_auth/business_logic/user_logout.py
django_simple_api_auth/business_logic/user_password_recovery.py
django_simple_api_auth/business_logic/user_reset_password.py
django_simple_api_auth/business_logic/user_social_login.py
django_simple_api_auth/migrations/__init__.py
django_simple_api_auth/templates/__init__.py
django_simple_api_auth/templates/emails/base.html
django_simple_api_auth/templates/emails/password_recovery/email.html
django_simple_api_auth/templates/emails/password_recovery/subject.txt
django_simple_api_auth/utils/__init__.py
django_simple_api_auth/utils/rest/__init__.py
django_simple_api_auth/utils/rest/viewsets/__init__.py
django_simple_api_auth/utils/rest/viewsets/views.py
example/__init__.py
example/manage.py
example/common/__init__.py
example/common/environ.py
example/common/management/__init__.py
example/common/management/commands/__init__.py
example/common/management/commands/load_data.py
example/common/migrations/__init__.py
example/config/__init__.py
example/config/celery.py
example/config/urls.py
example/config/wsgi.py
example/config/settings/__init__.py
example/config/settings/common.py
example/config/settings/settings.py
example/config/settings/test.py
example/config/url_patterns/__init__.py
example/config/url_patterns/api.py
example/config/url_patterns/v1_0.py
example/graphqls/__init__.py
example/graphqls/ariadne/__init__.py
example/graphqls/ariadne/queries.py
example/graphqls/ariadne/scheme.py
example/graphqls/graphene/__init__.py
example/graphqls/graphene/connections.py
example/graphqls/graphene/dataloader.py
example/graphqls/graphene/fields.py
example/graphqls/graphene/filters.py
example/graphqls/graphene/schema.py
example/graphqls/graphene/views.py
example/project/__init__.py
example/project/app/__init__.py
example/project/app/admin.py
example/project/app/models.py
example/project/app/views.py
example/project/app/api/__init__.py
example/project/app/api/graphql/__init__.py
example/project/app/api/graphql/dataloader.py
example/project/app/api/graphql/filters.py
example/project/app/api/graphql/mutations.py
example/project/app/api/graphql/queries.py
example/project/app/api/graphql/serializers.py
example/project/app/api/graphql/types.py
example/project/app/api/rest/__init__.py
example/project/app/api/rest/v1_0/__init__.py
example/project/app/api/rest/v1_0/filters.py
example/project/app/api/rest/v1_0/permissions.py
example/project/app/api/rest/v1_0/routers.py
example/project/app/api/rest/v1_0/serializers.py
example/project/app/api/rest/v1_0/validators.py
example/project/app/api/rest/v1_0/viewsets.py
example/project/app/migrations/__init__.py
example/project/app/tests/__init__.py
example/project/app/tests/api/__init__.py
example/project/app/tests/api/graphql/__init__.py
example/project/app/tests/api/rest/__init__.py
example/project/app/tests/api/rest/v1_0/__init__.py
example/project/graphql/__init__.py
example/project/graphql/connections.py
example/project/graphql/dataloader.py
example/project/graphql/fields.py
example/project/graphql/filters.py
example/project/graphql/schema.py
example/project/graphql/views.py
example/users/__init__.py
example/users/admin.py
example/users/models.py
example/users/migrations/0001_initial.py
example/users/migrations/0002_alter_user_email.py
example/users/migrations/__init__.py
example/utils/__init__.py
example/utils/api/__init__.py
example/utils/api/exceptions.py
tests/__init__.py
tests/api/__init__.py
tests/api/graphql/__init__.py
tests/api/graphql/common.py
tests/api/graphql/test_create_user.py
tests/api/graphql/test_login.py
tests/api/graphql/test_logout.py
tests/api/graphql/test_me.py
tests/api/graphql/test_recover_password.py
tests/api/graphql/test_reset_password.py
tests/api/rest/__init__.py
tests/api/rest/test_create_user.py
tests/api/rest/test_login.py
tests/api/rest/test_logout.py
tests/api/rest/test_me.py
tests/api/rest/test_recover_password.py
tests/api/rest/test_reset_password.py
tests/config/__init__.py
tests/config/settings.py
tests/config/urls.py
tests/config/graphqls/__init__.py
tests/config/graphqls/ariadne/__init__.py
tests/config/graphqls/ariadne/scheme.py
tests/config/graphqls/graphene/__init__.py
tests/config/graphqls/graphene/schema.py
tests/config/graphqls/graphene/views.py
tests/config/url_patterns/__init__.py
tests/config/url_patterns/api.py
tests/config/url_patterns/v1_0.py