├── .codeclimate.yml ├── .coveragerc ├── .gitignore ├── .travis.yml ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── graphql_social_auth ├── __init__.py ├── decorators.py ├── exceptions.py ├── locale │ └── es │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── mixins.py ├── mutations.py ├── relay │ ├── __init__.py │ ├── mutations.py │ └── nodes.py ├── types.py └── utils.py ├── requirements ├── flake8.txt └── test.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── decorators.py ├── mixins.py ├── settings.py ├── test_decorators.py ├── test_mutations.py ├── test_relay.py ├── test_utils.py └── testcases.py └── tox.ini /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source = graphql_social_auth 3 | branch = True 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/README.rst -------------------------------------------------------------------------------- /graphql_social_auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/graphql_social_auth/__init__.py -------------------------------------------------------------------------------- /graphql_social_auth/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/graphql_social_auth/decorators.py -------------------------------------------------------------------------------- /graphql_social_auth/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/graphql_social_auth/exceptions.py -------------------------------------------------------------------------------- /graphql_social_auth/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/graphql_social_auth/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /graphql_social_auth/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/graphql_social_auth/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /graphql_social_auth/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/graphql_social_auth/mixins.py -------------------------------------------------------------------------------- /graphql_social_auth/mutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/graphql_social_auth/mutations.py -------------------------------------------------------------------------------- /graphql_social_auth/relay/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/graphql_social_auth/relay/__init__.py -------------------------------------------------------------------------------- /graphql_social_auth/relay/mutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/graphql_social_auth/relay/mutations.py -------------------------------------------------------------------------------- /graphql_social_auth/relay/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/graphql_social_auth/relay/nodes.py -------------------------------------------------------------------------------- /graphql_social_auth/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/graphql_social_auth/types.py -------------------------------------------------------------------------------- /graphql_social_auth/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/graphql_social_auth/utils.py -------------------------------------------------------------------------------- /requirements/flake8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/requirements/flake8.txt -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/requirements/test.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/tests/decorators.py -------------------------------------------------------------------------------- /tests/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/tests/mixins.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/tests/test_decorators.py -------------------------------------------------------------------------------- /tests/test_mutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/tests/test_mutations.py -------------------------------------------------------------------------------- /tests/test_relay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/tests/test_relay.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/testcases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/tests/testcases.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-social-auth/HEAD/tox.ini --------------------------------------------------------------------------------