feat(DIExtensions): Optionale IConfiguration-Eingabe hinzugefügt, um AddAuthHubClient mit Hilfe von Appsettings konfigurieren zu können

This commit is contained in:
Developer 02
2025-03-07 13:25:40 +01:00
parent 48f5c69c91
commit 106d31b068
5 changed files with 14 additions and 11 deletions

View File

@@ -40,7 +40,7 @@ public class AuthHubTests
Build = options =>
{
var provider = new ServiceCollection()
.AddAuthHubClient(options)
.AddAuthHubClient(options: options)
.BuildServiceProvider();
_disposableAsync.Enqueue(provider);

View File

@@ -85,7 +85,7 @@ public class AuthClientTests
Build = options =>
{
var provider = new ServiceCollection()
.AddAuthHubClient(options)
.AddAuthHubClient(options: options)
.BuildServiceProvider();
_disposableAsync.Enqueue(provider);