Added custom extra fields to backend

No integration tests yet, TBD
This commit is contained in:
Donkie
2024-01-06 16:22:35 +01:00
parent 71c29d2467
commit 77ac9d6a5c
14 changed files with 556 additions and 25 deletions

View File

@@ -35,10 +35,9 @@ def test_get_all():
# Verify
settings = result.json()
assert settings == {
"currency": {
"value": '"EUR"',
"is_set": False,
"type": "string",
},
assert "currency" in settings
assert settings["currency"] == {
"value": '"EUR"',
"is_set": False,
"type": "string",
}