Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/#22/review api #26

Merged
merged 13 commits into from
Aug 18, 2021
13 changes: 13 additions & 0 deletions server/utils/json_util.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import json
from bson import ObjectId


class JSONEncoder(json.JSONEncoder):
def default(self, o):
if isinstance(o, ObjectId):
return str(o)
return json.JSONEncoder.default(self, o)


def jsonify(data):
return json.loads(json.dumps(data, cls=JSONEncoder))
Zih0 marked this conversation as resolved.
Show resolved Hide resolved