create new user without passw., id in create_user

This commit is contained in:
DmitryGantimurov 2023-07-27 23:22:24 +03:00
parent 5012642f7a
commit 8c81935004

View File

@ -180,8 +180,8 @@ def change_book_status(data: schemas.Book):
@app.post("/api/signup")
def create_user(data = Body()):
if database.query(UserDatabase).filter(UserDatabase.email == data["email"]).first() == None:
new_user = UserDatabase(id=data["id"], email=data["email"], password=data["password"],
hashed_password=get_password_hash(data["password"]), name=data["name"], surname=data["surname"])
new_user = UserDatabase(email=data["email"], hashed_password=get_password_hash(data["password"]),
name=data["name"], surname=data["surname"])
database.add(new_user)
database.commit()
database.refresh(new_user) # обновляем состояние объекта