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
Showing only changes of commit 233458ed89 - Show all commits

View File

@@ -199,7 +199,7 @@ public class AuthController(IOptionsSnapshot<Admin> user, IOptionsSnapshot<Gener
Detail = "The user is not logged in to link accounts.",
Extensions = new Dictionary<string, object?>()
{
{ "traceId", HttpContext.TraceIdentifier }
{ "traceId", Activity.Current?.Id ?? HttpContext.TraceIdentifier }
}
});
@@ -212,7 +212,7 @@ public class AuthController(IOptionsSnapshot<Admin> user, IOptionsSnapshot<Gener
Detail = "This OAuth provider is already associated with the account.",
Extensions = new Dictionary<string, object?>()
{
{ "traceId", HttpContext.TraceIdentifier }
{ "traceId", Activity.Current?.Id ?? HttpContext.TraceIdentifier }
}
});