I've created a new application with version 4.3.0 Blazor WASM, EF - Postgre, and when I am logged as tenant the page Administration > Settings is empty. There is no error in the logs and in the web browser console. I have no idea what is wrong. In the host side it works fine.
5 Answer(s)
-
0
Hi,
Can you provide steps to reproduce? thanks.
-
0
I just create a new project using ABP Suite, Blazor WASM, EF, Postgre, no mobile, and any check-box checked. Then I've run the dbmigrator, the host and blazor application, I've created a new tenant, and when login in this new tenant, clicking over Administration > Settings, the page is not loaded.
If you want I can send you my project. I've just did some customization in the project, but it is pretty much empty yet.
-
0
Hi,
There is a problem, and we have fixed it. by the way, ticket returned.
For now try:
Open PermissionDefinitionProvider and add following code and grants email setting permission.
var setting = context.GetPermissionOrNull(SettingManagementPermissions.Emailing); setting.MultiTenancySide = MultiTenancySides.Both;
You can safely remove this code when you upgrade to a new version
-
0
Hi,
That does the trick, but the menu Emailing is being shown in the sub-menu options. Will that be visible on Tenant side on next versions?
-
0
Hi,
No, actually email setting UI just for Host side.