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
288 changed files with 15208 additions and 99 deletions
Showing only changes of commit 7f87b4d856 - Show all commits
.editorconfig.env
.gitea/workflows
.gitignore
ApiDto
Backend.slnDockerfile
Endpoint
Backend.http
Common
Configuration
Controllers
Endpoint.csprojProgram.cs
Sync
WeatherForecast.cs
wwwroot/css/swagger
README.md
Security
SqlData
Application
Application.csproj
Common
Cqrs
DependencyInjection.cs
Interfaces/DbContexts
Domain
Migrations
Persistence
nuget.config

@ -372,13 +372,13 @@ public class OAuthService(ILogger<OAuthService> logger, Dictionary<OAuthProvider
const string log = "Cache data retrieved for token: {Token}. Fingerprint: {Fingerprint}.";
if (result.User != null)
logger.LogInformation(log + "Provider: {Provider}. UserId: {UserId}.",
logger.LogInformation(log + " Provider: {Provider}. UserId: {UserId}.",
token,
requestInfo.Fingerprint,
result.User.Id,
result.Provider);
else if (result.Provider != null)
logger.LogInformation(log + "Provider: {Provider}.",
logger.LogInformation(log + " Provider: {Provider}.",
token,
requestInfo.Fingerprint,
result.Provider);