Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroBern committed Jan 30, 2020
1 parent f30e46f commit 9d70395
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
6 changes: 2 additions & 4 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@ class AuthMutation(graphene.ObjectType):
swap_emails = mutations.SwapEmails.Field()
remove_secondary_email = mutations.RemoveSecondaryEmail.Field()

# django-graphql-jwt authentication
# with some extra features
# django-graphql-jwt inheritances
token_auth = mutations.ObtainJSONWebToken.Field()
verify_token = mutations.VerifyToken.Field()
refresh_token = mutations.RefreshToken.Field()
Expand Down Expand Up @@ -115,8 +114,7 @@ class AuthRelayMutation(graphene.ObjectType):
swap_emails = relay.SwapEmails.Field()
remove_secondary_email = mutations.RemoveSecondaryEmail.Field()

# django-graphql-jwt authentication
# with some extra features
# django-graphql-jwt inheritances
token_auth = relay.ObtainJSONWebToken.Field()
verify_token = relay.VerifyToken.Field()
refresh_token = relay.RefreshToken.Field()
Expand Down
6 changes: 2 additions & 4 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -1067,8 +1067,7 @@ class AuthMutation(graphene.ObjectType):
verify_secondary_email = mutations.VerifySecondaryEmail.Field()
swap_emails = mutations.SwapEmails.Field()

# django-graphql-jwt authentication
# with some extra features
# django-graphql-jwt inheritances
token_auth = mutations.ObtainJSONWebToken.Field()
verify_token = mutations.VerifyToken.Field()
refresh_token = mutations.RefreshToken.Field()
Expand All @@ -1090,8 +1089,7 @@ class AuthMutation(graphene.ObjectType):
verify_secondary_email = relay.VerifySecondaryEmail.Field()
swap_emails = relay.SwapEmails.Field()

# django-graphql-jwt authentication
# with some extra features
# django-graphql-jwt inheritances
token_auth = relay.ObtainJSONWebToken.Field()
verify_token = relay.VerifyToken.Field()
refresh_token = relay.RefreshToken.Field()
Expand Down
2 changes: 1 addition & 1 deletion docs/relay.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

---

Import mutations defined in the ``relay`` module:
Import mutations from the ``relay`` module:

```python

Expand Down

0 comments on commit 9d70395

Please sign in to comment.