fix: add forgotten changes
All checks were successful
.NET Test Pipeline / build-and-test (push) Successful in 2m39s
Build and Deploy Docker Container / build-and-deploy (push) Successful in 3m11s

This commit is contained in:
Polianin Nikita 2024-10-31 04:12:22 +03:00
parent cd6f25deba
commit a0ff624481

View File

@ -76,8 +76,9 @@ public class AuthService(ICacheService cache, IAccessToken accessTokenService, I
var authToken = new AuthToken(requestContext)
{
CreatedAt = DateTime.UtcNow,
RefreshToken = refreshToken,
UserId = userId,
AccessToken = token,
AccessToken = token
};
await SetAuthTokenDataToCache(authToken, cancellation);