Render all statistics tables.

This commit is contained in:
2024-05-04 03:57:15 +01:00
parent c2ce0d8b3e
commit 1d9bce3f49
6 changed files with 235 additions and 49 deletions

View File

@@ -1,5 +1,8 @@
using Aaru.Server.New.Components;
using Aaru.Server.New.Components.Account;
using Blazorise;
using Blazorise.Bootstrap;
using Blazorise.Icons.FontAwesome;
using Microsoft.AspNetCore.Components.Authorization;
using Microsoft.AspNetCore.Identity;
using Microsoft.EntityFrameworkCore;
@@ -43,6 +46,8 @@ builder.Services.AddIdentityCore<IdentityUser>(options =>
builder.Services.AddSingleton<IEmailSender<IdentityUser>, IdentityNoOpEmailSender>();
builder.Services.AddBlazorise(options => { options.Immediate = true; }).AddBootstrapProviders().AddFontAwesomeIcons();
WebApplication app = builder.Build();
// Configure the HTTP request pipeline.