Support for Django4.0+ JSONField

This commit is contained in:
Mohamed ElKalioby
2022-12-19 14:55:37 +03:00
parent 17ef0f4b1e
commit 98b9fce1d2
5 changed files with 36 additions and 12 deletions

View File

@@ -1,5 +1,12 @@
from django.db import models
from jsonfield import JSONField
try:
from django.db.models import JSONField
except ModuleNotFoundError:
try:
from jsonfield import JSONField
except ModuleNotFoundError:
raise ModuleNotFoundError("Can't find a JSONField implementation, please install jsonfield if django < 4.0")
from jose import jwt
from django.conf import settings
#from jsonLookup import shasLookup, hasLookup