Hi,
I create an app with version 5.1.2 and upgrade to 7.0.1. but I can't reproduce the problem.
Here are my steps:
net6.0 with net7.05.1.2 with 7.0.11.1.4.1abp bundle commandCan you share the full steps to reproduce?
Or you can share a project that can reproduce the problem. I will check it. shiwei.liang@volosoft.com
I will check it out
Hi,
You can try to update to 7.0.3, maybe it has been fixed.
Hi,
Can you share the error logs?
And you can check this:
Hi,
it is not available now, we will consider to supports this, you currently need to manually clear the cache
Shared
Hi,
I have updated the code: https://gist.github.com/realLiangshiwei/f3b8c51c576a10ac220d11a6b0dc2cfe
context.Menu.AddItem(
new ApplicationMenuItem(
MyProjectNameMenus.HostDashboard,
l["Menu:Dashboard"],
"/HostDashboard",
icon: "fa fa-chart-line",
order: 2
).RequirePermissions(MyProjectNamePermissions.Dashboard.Host)
.WithCustomData("data-bs-placement", TooltipPlacement.Top)
.WithCustomData("data-bs-title", "Hello world")
);
Hi,
As I said, you can understand the service as a subsystem, except that it has no UI.
We wonder to how to get roles and permissions from central auth server,not like ABP microservices template which unite all microservice UI to one Main host.That is not what we want.
ok, I try to give you another suggestion, but I don't know about your solution architecture details
I assume that you already have an auth server center.
You can configure the OpenIdConnect for authentication:
You need to create an openIddict application for each subsystem,
You can use remote services to get data such as role permissions
Install the following packages and add module dependencies
Volo.Abp.Http.Client.Web
Volo.Abp.AspNetCore.Mvc.Client
Volo.Abp.Http.Client.IdentityModel.Web
Update appsettings.json
"RemoteServices": {
"Default": {
"BaseUrl": "Your auth server URL"
}
}
We already do this in the template, you can create a project to check: abp new Myapp -u blazor-server --tiered