From b8cb5554f6e0c35f6155f297cc3b44833dd5b2aa Mon Sep 17 00:00:00 2001 From: pkrakesh Date: Mon, 30 Sep 2024 19:13:31 +0530 Subject: [PATCH] Changed the recommended library for JWT Authentication in Django to strawberry-django-auth (#633) --- docs/guide/authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/authentication.md b/docs/guide/authentication.md index e54db164..0c19b93b 100644 --- a/docs/guide/authentication.md +++ b/docs/guide/authentication.md @@ -8,7 +8,7 @@ title: Authentication > This solution is enough for web browsers, but will not work for clients that > doesn't have a way to store cookies in it (e.g. mobile apps). For those it is > recommended to use token authentication methods. JWT can be used with -> [strawberry-django-jwt](https://github.com/KundaPanda/strawberry-django-jwt) +> [strawberry-django-auth](https://github.com/nrbnlulu/strawberry-django-auth) > lib. `strawberry_django` provides mutations to get authentication going right away.