refactor: complete web project consolidation and stabilize identity flow

- Finalized move from NexusReader.Web.New to NexusReader.Web
- Implemented robust ServerIdentityService with UserManager and SignInManager
- Updated UI components to handle authentication state synchronization via force reload
- Refined BookIngestionModal styling following Nexus Neon design system
- Resolved namespace conflicts and updated CI/CD/VS Code configurations
- Fixes #33
This commit is contained in:
2026-05-11 20:42:57 +02:00
parent f864580207
commit e1f1a4b3cb
41 changed files with 1280 additions and 743 deletions
@@ -1,13 +1,14 @@
using Mapster;
using NexusReader.Application.DTOs.User;
using NexusReader.Domain.Entities;
using MapsterMapper;
using Microsoft.Extensions.DependencyInjection;
using NexusReader.Domain.Entities;
using NexusReader.Application.DTOs.User;
namespace NexusReader.Application.Mappings;
public static class MappingConfig
{
public static void RegisterMappings(this IServiceCollection services)
public static IServiceCollection AddMapsterConfiguration(this IServiceCollection services)
{
var config = TypeAdapterConfig.GlobalSettings;
@@ -16,5 +17,7 @@ public static class MappingConfig
services.AddSingleton(config);
services.AddScoped<IMapper, ServiceMapper>();
return services;
}
}