Merge p19-w4-authblocks-1036-bump into dev (AuthBlocks 10.3.36: JWT refresh fix + ModelView DI fix; drop stopgap)
This commit is contained in:
@@ -15,7 +15,7 @@
|
|||||||
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.1" />
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.1" />
|
||||||
<!-- AuthBlocks API host surface: AddAuthBlocks / MapAuthBlocks / UseAuthBlocksStartupAsync.
|
<!-- AuthBlocks API host surface: AddAuthBlocks / MapAuthBlocks / UseAuthBlocksStartupAsync.
|
||||||
The Manager keeps only Cerebellum.AuthBlocks.Web (web-side auth, no signing secret). -->
|
The Manager keeps only Cerebellum.AuthBlocks.Web (web-side auth, no signing secret). -->
|
||||||
<PackageReference Include="Cerebellum.AuthBlocks" Version="10.3.33" />
|
<PackageReference Include="Cerebellum.AuthBlocks" Version="10.3.36" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="MudBlazor" Version="8.15.0" />
|
<PackageReference Include="MudBlazor" Version="8.15.0" />
|
||||||
<PackageReference Include="Cerebellum.AuthBlocks.Web" Version="10.3.33" />
|
<PackageReference Include="Cerebellum.AuthBlocks.Web" Version="10.3.36" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -34,10 +34,6 @@ var contentApiUrl = builder.Configuration["Api:ContentApiUrl"]
|
|||||||
?? throw new InvalidOperationException("Api:ContentApiUrl is required");
|
?? throw new InvalidOperationException("Api:ContentApiUrl is required");
|
||||||
AuthBlocksWeb.Startup.ConfigureAuthServices(builder.Services, contentApiUrl);
|
AuthBlocksWeb.Startup.ConfigureAuthServices(builder.Services, contentApiUrl);
|
||||||
|
|
||||||
// Per-circuit bridge consumed by the AuthBlocks ModelView component (Users/Registrations pages).
|
|
||||||
// ModelView has a required [Inject] of this type; without it the circuit throws on component init.
|
|
||||||
builder.Services.AddScoped<Web.Maintenance.Entities.EditModalSaveContextHolder>();
|
|
||||||
|
|
||||||
// Named HttpClient for unauthenticated Content API calls (CmsTrackService proxying WAV data
|
// Named HttpClient for unauthenticated Content API calls (CmsTrackService proxying WAV data
|
||||||
// to DeepDrftAPI's POST api/track/upload). API key added per-request by the service.
|
// to DeepDrftAPI's POST api/track/upload). API key added per-request by the service.
|
||||||
builder.Services.AddHttpClient("DeepDrft.Content", client =>
|
builder.Services.AddHttpClient("DeepDrft.Content", client =>
|
||||||
|
|||||||
Reference in New Issue
Block a user