Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidEggenberger committed Mar 29, 2024
1 parent d49ca44 commit 7228d1f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion Source/Web/Server/BuildingBlocks/Registrator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public static IServiceCollection AddBuildingBlocks(this IServiceCollection servi
return services;
}

public static IApplicationBuilder UseBuildingBlocksMiddleware(this IApplicationBuilder applicationBuilder)
public static IApplicationBuilder UseBuildingBlocks(this IApplicationBuilder applicationBuilder)
{
applicationBuilder.UseApiVersioningMiddleware();
applicationBuilder.UseExceptionHandlingMiddleware();
Expand Down
3 changes: 0 additions & 3 deletions Source/Web/Server/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Shared.Features.MultiTenancy;
using Shared.Features.Modules;
using Modules.Channels.Web.Server;
using Modules.LandingPages.Server;
Expand Down Expand Up @@ -47,8 +46,6 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)

app.UseBuildingBlocks();

app.UseMultiTenancyMiddleware();

app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
Expand Down

0 comments on commit 7228d1f

Please sign in to comment.