fix: update user creation to use 'name' instead of 'full_name'

This commit is contained in:
Artem Kashaev
2025-11-27 11:07:19 +05:00
parent fab76ea6ee
commit ad6283680b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ class UserRepository:
user = User(
email=data.email,
hashed_password=hashed_password,
full_name=data.full_name,
name=data.name,
is_active=data.is_active,
)
self._session.add(user)