feature: Approval and Promotion to VigilCareClinical
This commit is contained in:
@@ -33,6 +33,10 @@ try
|
||||
.WithSSL(minioOptions.UseSsl)
|
||||
.Build());
|
||||
|
||||
// Site Configuration
|
||||
builder.Services.Configure<SiteConfigOptions>(
|
||||
builder.Configuration.GetSection(SiteConfigOptions.Section));
|
||||
|
||||
// JWT Authentication
|
||||
var jwtOptions = builder.Configuration.GetSection(JwtOptions.Section).Get<JwtOptions>()!;
|
||||
builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
|
||||
@@ -56,6 +60,8 @@ try
|
||||
builder.Services.AddScoped<IBatchService, BatchService>();
|
||||
builder.Services.AddScoped<IDraftService, DraftService>();
|
||||
builder.Services.AddScoped<IDocumentStorageService, DocumentStorageService>();
|
||||
builder.Services.AddScoped<IVerificationService, VerificationService>();
|
||||
builder.Services.AddScoped<IWorkQueueService, WorkQueueService>();
|
||||
|
||||
builder.Services.AddControllers();
|
||||
builder.Services.AddEndpointsApiExplorer();
|
||||
|
||||
Reference in New Issue
Block a user