From bceae43aea3907f9e12850e197c2f1e0a076250c Mon Sep 17 00:00:00 2001 From: Timo Notheisen Date: Mon, 2 Dec 2024 13:37:17 +0100 Subject: [PATCH] fix: AddCustomIdentity in SseServer --- Applications/SseServer/src/SseServer/Program.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Applications/SseServer/src/SseServer/Program.cs b/Applications/SseServer/src/SseServer/Program.cs index 8f88f495eb..da2d66e680 100644 --- a/Applications/SseServer/src/SseServer/Program.cs +++ b/Applications/SseServer/src/SseServer/Program.cs @@ -117,6 +117,8 @@ static void ConfigureServices(IServiceCollection services, IConfiguration config options.KnownProxies.Clear(); }); + services.AddCustomIdentity(environment); + services.AddPushNotifications(parsedConfiguration.Modules.Devices.Infrastructure.PushNotifications); }