From e3805effdcb583863f1d33f37fbaa2ae00bb36a7 Mon Sep 17 00:00:00 2001 From: Tomasz Kontusz Date: Thu, 26 Sep 2019 18:57:38 +0200 Subject: [PATCH] Remove references to Django 1.9 from the docs --- docs/authorization.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/authorization.rst b/docs/authorization.rst index ebc9795..1b7ab55 100644 --- a/docs/authorization.rst +++ b/docs/authorization.rst @@ -166,7 +166,7 @@ To restrict users from accessing the GraphQL API page the standard Django LoginR After this, you can use the new ``PrivateGraphQLView`` in the project's URL Configuration file ``url.py``: -For Django 1.9 and below: +For Django 1.11: .. code:: python @@ -184,4 +184,4 @@ For Django 2.0 and above: path('graphql', PrivateGraphQLView.as_view(graphiql=True, schema=schema)), ] -.. _LoginRequiredMixin: https://docs.djangoproject.com/en/1.10/topics/auth/default/#the-loginrequired-mixin +.. _LoginRequiredMixin: https://docs.djangoproject.com/en/1.11/topics/auth/default/#the-loginrequired-mixin