feat: AuthenticationRouteService zum WindreamHub-Client hinzugefügt

- `AuthenticationRouteService`-Klasse zur Verwaltung von Authentifizierungsrouten erstellt.
- `AuthenticationRouteService` im DI-Container mit `AddSingleton<AuthenticationRouteService>()` registriert.
- `AuthenticationRouteService` zum `WindreamClientService` hinzugefügt, um die Authentifizierung im Hauptdienst zu verwalten.
This commit is contained in:
Developer 02
2024-09-12 02:09:13 +02:00
parent 0346af5b29
commit c233ab0ed7
5 changed files with 24 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
using DigitalData.Core.Legacy.Client;
using Microsoft.Extensions.DependencyInjection;
using WindreamHub.Legacy.Client.Route;
using WindreamHub.Legacy.Client.Routes;
namespace WindreamHub.Legacy.Client
{
@@ -15,7 +16,8 @@ namespace WindreamHub.Legacy.Client
})
.AddSingleton<WindreamClientService>()
.AddSingleton<SubscriptionsRouteService>()
.AddSingleton<SystemDetailsRouteService>();
.AddSingleton<SystemDetailsRouteService>()
.AddSingleton<AuthenticationRouteService>();
return services;
}