Hi,
I remember you don't want to user redis, however, we can make a meeting tomorrow
Try abp new Qa -t app-pro -u blazor --preview
Hi,
See https://support.abp.io/QA/Questions/1144/add-public-website-and-CMS-kit-to-existing-application#answer-1ae94ea7-b66c-f0e2-2665-39fbbd832171
@Leonardo.Willrich
You can download new template (4.3.1 rc) for comparison
Hi,
I make an example for you: https://github.com/realLiangshiwei/Qa1129.
Qa module and identity module are two databases
"ConnectionStrings": {
"Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=Qa_Main;Trusted_Connection=True",
"Qa": "Server=(LocalDb)\\MSSQLLocalDB;Database=Qa_Module;Trusted_Connection=True"
}
Hi,
You don't need to override TenantAppSerivce
, you can subscribe to entity creation domain events and handie it.
https://docs.abp.io/en/abp/latest/Local-Event-Bus#pre-built-events
Hi,
Try
public partial class Index
{
[Inject]
public NavigationManager NavigationManager { get; set; }
protected override void OnInitialized()
{
if (!CurrentUser.IsAuthenticated)
{
NavigationManager.NavigateTo("/authentication/login");
}
}
}
@Leonardo.Willrich
https://github.com/abpframework/abp/blob/dev/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor/Pages/SettingManagement/EmailSettingGroup/EmailSettingGroupViewComponent.razor
try DependsOn AbpSettingManagementBlazorWebAssemblyModule
or AbpSettingManagementBlazorServerModule
https://github.com/abpframework/abp/blob/dev/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain/Volo/Abp/PermissionManagement/PermissionStore.cs
Hi,
You need to use redis server.