From 36c87e22256e0bc65eaab0b5526f22e0026a49a7 Mon Sep 17 00:00:00 2001 From: Eddy ADEGNANDJOU <57044627+Eddy-123@users.noreply.github.com> Date: Sat, 30 Dec 2023 17:50:10 +0100 Subject: [PATCH] Update link to djangorestframework-jwt in installation.rst The previous link is currently broken. http://getblimp.github.io/django-rest-framework-jwt/ responds with a 404. So I'm suggesting to replace it with the one from pypi. --- docs/installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation.rst b/docs/installation.rst index b382d43..1217171 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -248,7 +248,7 @@ JSON Web Token (JWT) Support (optional) By default ``django-rest-auth`` uses Django's Token-based authentication. If you want to use JWT authentication, follow these steps: -1. Install `djangorestframework-jwt `_ +1. Install `djangorestframework-jwt `_ - ``djangorestframework-jwt`` is currently the only supported JWT library. 2. The ``JWT_PAYLOAD_HANDLER`` and ``JWT_ENCODE_HANDLER`` settings are imported from the ``django-rest-framework-jwt`` settings object. - Refer to `the library's documentation `_ for information on using different encoders.