Merge pull request #6514 from abpframework/liangshiwei/blazor-subapplication

Blazor: Support sub-application deployment
pull/6518/head
Halil İbrahim Kalkan 5 years ago committed by GitHub
commit 104d72cb45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,3 +1,3 @@
@using Volo.Abp.Ui.Branding
@inject IBrandingProvider BrandingProvider
<a class="navbar-brand" href="/">@BrandingProvider.AppName</a>
<a class="navbar-brand" href="">@BrandingProvider.AppName</a>

@ -27,12 +27,12 @@ namespace Volo.Abp.Identity.Blazor
if (hasRolePermission)
{
identityMenuItem.AddItem(new ApplicationMenuItem(IdentityMenuNames.Roles, l["Roles"], url: "/identity/roles"));
identityMenuItem.AddItem(new ApplicationMenuItem(IdentityMenuNames.Roles, l["Roles"], url: "identity/roles"));
}
if (hasUserPermission)
{
identityMenuItem.AddItem(new ApplicationMenuItem(IdentityMenuNames.Users, l["Users"], url: "/identity/users"));
identityMenuItem.AddItem(new ApplicationMenuItem(IdentityMenuNames.Users, l["Users"], url: "identity/users"));
}
}
}

@ -37,7 +37,7 @@ namespace Volo.Abp.SettingManagement.Blazor.Menus
new ApplicationMenuItem(
SettingManagementMenus.GroupName,
l["Settings"],
"/setting-management",
"setting-management",
icon: "fa fa-cog"
)
);

@ -22,7 +22,7 @@ namespace Volo.Abp.TenantManagement.Blazor.Navigation
if (await context.IsGrantedAsync(TenantManagementPermissions.Tenants.Default))
{
tenantManagementMenuItem.AddItem(new ApplicationMenuItem(TenantManagementMenuNames.Tenants, l["Tenants"], url: "/tenant-management/tenants"));
tenantManagementMenuItem.AddItem(new ApplicationMenuItem(TenantManagementMenuNames.Tenants, l["Tenants"], url: "tenant-management/tenants"));
}
}
}

@ -39,7 +39,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Menus
new ApplicationMenuItem(
MyProjectNameMenus.Home,
l["Menu:Home"],
"/",
"",
icon: "fas fa-home"
)
);

Loading…
Cancel
Save