Skip to content

Commit e3805ef

Browse files
committed
Remove references to Django 1.9 from the docs
1 parent 8356fcc commit e3805ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/authorization.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ To restrict users from accessing the GraphQL API page the standard Django LoginR
166166
167167
After this, you can use the new ``PrivateGraphQLView`` in the project's URL Configuration file ``url.py``:
168168

169-
For Django 1.9 and below:
169+
For Django 1.11:
170170

171171
.. code:: python
172172
@@ -184,4 +184,4 @@ For Django 2.0 and above:
184184
path('graphql', PrivateGraphQLView.as_view(graphiql=True, schema=schema)),
185185
]
186186
187-
.. _LoginRequiredMixin: https://docs.djangoproject.com/en/1.10/topics/auth/default/#the-loginrequired-mixin
187+
.. _LoginRequiredMixin: https://docs.djangoproject.com/en/1.11/topics/auth/default/#the-loginrequired-mixin

0 commit comments

Comments
 (0)