From 7602fdb459dc693a6a4e67b8520316170e93bc6b Mon Sep 17 00:00:00 2001 From: lihuacai Date: Sat, 18 Nov 2023 13:18:23 +0800 Subject: [PATCH] chore: Add django-ninja-jwt to requirements Added django-ninja-jwt==5.2.7 to requirements.txt. This package is necessary to introduce new tests for the authentication token process. Making sure the token generation and validation is robust enough helping us maintain the security and reliability of our authentication system. --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index c543705..62e1940 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,3 +13,4 @@ PyMySQL~=1.0.3 django-redis gevent==22.10.2 gunicorn==20.1.0 +django-ninja-jwt==5.2.7