[Cards] Change all instances of uuid to key

This commit is contained in:
2026-06-27 15:06:05 +02:00
parent 17b99041db
commit eec575c619
7 changed files with 16 additions and 16 deletions

View File

@@ -59,8 +59,8 @@ def test_access_authorization_models():
def test_card_model():
"""Test card model creation and validation."""
card = Card(uuid="test-uuid", group_id=1)
assert card.uuid == "test-uuid"
card = Card(key="test-key", group_id=1)
assert card.key == "test-key"
assert card.group_id == 1