Jan Krňávek

Results 8 comments of Jan Krňávek

This is gonna be the solution for me: https://github.com/vitalik/django-ninja/issues/938#issuecomment-1820601452

The above problem is fixed, please update your package to support the latest django-ninja. Thnak you.

Everything works alright. Thank you.

Hello @eadwinCode , one more note your django-ninja-jwt = "5.2.5" doens't work as well, "5.2.2" is OK

Poetry update output: ``` (mabb-py3.11) PS C:\git\mabb> poetry update Updating dependencies Resolving dependencies... Package operations: 0 installs, 1 update, 3 removals • Removing dnspython (2.3.0) • Removing email-validator (2.0.0.post2) •...

``` NINJA_JWT = { "ACCESS_TOKEN_LIFETIME": timedelta(minutes=120), "REFRESH_TOKEN_LIFETIME": timedelta(days=1), "ROTATE_REFRESH_TOKENS": False, "BLACKLIST_AFTER_ROTATION": False, "UPDATE_LAST_LOGIN": False, "ALGORITHM": "HS256", "SIGNING_KEY": SECRET_KEY, "VERIFYING_KEY": None, "AUDIENCE": None, "ISSUER": None, "JWK_URL": None, "LEEWAY": 0, "USER_ID_FIELD": "id",...

C:\git\mabb> poetry show pydantic ``` name : pydantic version : 1.10.9 description : Data validation and settings management using python type hints dependencies - email-validator >=1.0.3 - typing-extensions >=4.2.0 required...

I am not aware of using explicitly USER_SETTINGS anywhere in my code. I am using own user model. Can that be a source of issue? ``` class User(AbstractUser): uid =...