Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
255 changed files with 12988 additions and 98 deletions
Showing only changes of commit a0ff624481 - Show all commits

View File

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