mirror of https://github.com/abpframework/eventhub
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
905 B
28 lines
905 B
using Payment.Admin.Navigation;
|
|
using Volo.Abp.AspNetCore.Components.Web.Theming.Routing;
|
|
using Volo.Abp.AspNetCore.Components.WebAssembly.Theming;
|
|
using Volo.Abp.Modularity;
|
|
using Volo.Abp.UI.Navigation;
|
|
|
|
namespace Payment.Admin
|
|
{
|
|
[DependsOn(
|
|
typeof(AbpAspNetCoreComponentsWebAssemblyThemingModule),
|
|
typeof(PaymentAdminHttpApiClientModule)
|
|
)]
|
|
public class PaymentAdminBlazorModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
Configure<AbpNavigationOptions>(options =>
|
|
{
|
|
options.MenuContributors.Add(new PaymentAdminBlazorMenuContributor());
|
|
});
|
|
|
|
Configure<AbpRouterOptions>(options =>
|
|
{
|
|
options.AdditionalAssemblies.Add(typeof(PaymentAdminBlazorModule).Assembly);
|
|
});
|
|
}
|
|
}
|
|
}
|