Skip to content

Instantly share code, notes, and snippets.

@joaquinacuna
Created November 4, 2020 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joaquinacuna/f1372e39867870fa38cf0d2fe3218d93 to your computer and use it in GitHub Desktop.
Save joaquinacuna/f1372e39867870fa38cf0d2fe3218d93 to your computer and use it in GitHub Desktop.
# settings.py
INSTALLED_APPS = [
# ...
"graphql_auth",
]
AUTHENTICATION_BACKENDS = [
# remove this
# "graphql_jwt.backends.JSONWebTokenBackend",
# add this
"graphql_auth.backends.GraphQLAuthBackend",
# ...
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment