fix: name, update values HTTPException

This commit is contained in:
TheNoxium
2025-04-18 17:31:37 +05:00
parent 1333992dc5
commit 29027bf9f8
5 changed files with 22 additions and 26 deletions

View File

@@ -40,7 +40,7 @@ async def init():
create_key_query = account_keyring_table.insert().values(
owner_id=user_id,
key_type=KeyType.PASSWORD,
key_id=KeyIdGenerator()
key_id=KeyIdGenerator(),
key_value=hashed_password,
status=KeyStatus.ACTIVE,
)