mirror of https://github.com/abpframework/abp
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.
26 lines
848 B
26 lines
848 B
using Volo.Abp.AspNetCore.Components.UI.Theming.Routing;
|
|
using Volo.Abp.AspNetCore.Components.UI.Theming.Toolbars;
|
|
using Volo.Abp.Modularity;
|
|
|
|
namespace Volo.Abp.AspNetCore.Components.UI.BasicTheme.Server
|
|
{
|
|
[DependsOn(
|
|
typeof(AbpAspNetCoreComponentsUiBasicThemeModule)
|
|
)]
|
|
public class AbpAspNetCoreComponentsUiBasicThemeServerModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
Configure<AbpRouterOptions>(options =>
|
|
{
|
|
options.AdditionalAssemblies.Add(typeof(AbpAspNetCoreComponentsUiBasicThemeServerModule).Assembly);
|
|
});
|
|
|
|
Configure<AbpToolbarOptions>(options =>
|
|
{
|
|
options.Contributors.Add(new BasicThemeToolbarContributor());
|
|
});
|
|
}
|
|
}
|
|
}
|