Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions rest_api/rest_api_server/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from cryptography.fernet import Fernet
from datetime import datetime
from decimal import Decimal
from functools import cache
from string import ascii_letters, digits

import json_excel_converter.xlsx.formats as ExcelFormats
Expand Down Expand Up @@ -517,6 +518,7 @@ def get_root_directory_path():
return os.path.dirname(os.path.dirname(os.path.abspath(__file__)))


@cache
def _get_encryption_salt():
return Config().client.encryption_salt()

Expand Down
Loading