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
234 changed files with 10955 additions and 77 deletions
Showing only changes of commit 8d4c482bbd - Show all commits
.env
.gitea/workflows
.gitignore
ApiDto
Backend.sln
Endpoint
Security
SqlData
Application
Application.csproj
Common
Cqrs
DependencyInjection.cs
Interfaces
Domain
Migrations
Persistence

@ -72,7 +72,7 @@ public class AuthService(ICacheService cache, IAccessToken accessTokenService, I
authToken.UserAgent != request.UserAgent &&
authToken.Ip != request.Ip)
{
await cache.RemoveAsync(request.Fingerprint, cancellation);
await cache.RemoveAsync(GetAuthCacheKey(request.Fingerprint), cancellation);
await RevokeAccessToken(authToken.AccessToken);
throw new SecurityException(request.Fingerprint);