|
|
|
@ -7,6 +7,7 @@ using Connected.Net.Endpoints;
|
|
|
|
|
using Connected.Net.Server;
|
|
|
|
|
using Connected.Security.Identity;
|
|
|
|
|
using Connected.ServiceModel;
|
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
|
|
|
|
|
[assembly: MicroService(MicroServiceType.Service)]
|
|
|
|
@ -21,8 +22,7 @@ internal class CommonStartup : Startup
|
|
|
|
|
services.AddScoped(typeof(IIdentityService), typeof(IdentityService));
|
|
|
|
|
services.AddTransient(typeof(IDocumentLocker<,>), typeof(DocumentLocker<,>));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override async Task OnInitialize(Dictionary<string, string> args)
|
|
|
|
|
protected override async Task OnInitialize(IConfiguration config)
|
|
|
|
|
{
|
|
|
|
|
if (Services is null || Services.GetService<IContextProvider>() is not IContextProvider provider)
|
|
|
|
|
return;
|
|
|
|
|