This commit is contained in:
ivankirpichnikov
2025-10-16 23:06:10 +03:00
parent 652da07d12
commit 2ae3323b1e
2 changed files with 4 additions and 4 deletions
@@ -39,7 +39,7 @@ class UserSignUpInteractor:
hashed_password=hashed_password,
)
access_token = self.access_token_factory.execute(user.id)
crypted_access_token = self.access_token_cryptographer.crypto(access_token)
crypted_access_token = self.access_token_cryptographer.crypto(access_token.id)
response = UserSignUpResponse(access_token=crypted_access_token)