Skip to content

Commit

Permalink
Merge pull request #19611 from abpframework/MyProjectNameBlazorHostMo…
Browse files Browse the repository at this point in the history
…dule

Enable `Multi Tenancy` in `MyProjectName.Blazor.Server.Host` project.
  • Loading branch information
realLiangshiwei authored Apr 25, 2024
2 parents 69d0950 + 48deac6 commit 19d4057
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,11 @@ public override void ConfigureServices(ServiceConfigurationContext context)
options.UseSqlServer();
});

Configure<AbpMultiTenancyOptions>(options =>
{
options.IsEnabled = MultiTenancyConsts.IsEnabled;
});

Configure<AbpBundlingOptions>(options =>
{
// MVC UI
Expand Down

0 comments on commit 19d4057

Please sign in to comment.