You can output the log to check And check the email provider logs
Task SendWelcomeEmailAsync(string password, string userName, string email, string tenantName)
{
Logger.Info...("Email sending")
send..
Logger.Info...("Email sent")
}
Hi,
One of them it's to use JQuery to add it dynamically on the fly and the other one it's to modify the Lepton X
Yes, you can add it via Jquery or override the page
Add to the IdentityServiceDomainModule
okay, i will let you know when i find a solution
Hi, you can try this.
https://support.abp.io/QA/Questions/7023/accesstoken-expiration-is-not-triggering-the-signout-in-Blazor-Server#answer-3a11ddd7-72a3-0e6b-0a9d-0fba367df5e7
I'm still checking and will find a better solution
Hi,
Sorry, please try {{tenantName}} instead of {0}
https://github.com/abpframework/abp/blob/rel-7.3/framework/src/Volo.Abp.UI.Navigation/Volo/Abp/Ui/Navigation/Urls/AppUrlProvider.cs#L16-L17C50
ABP support {0} from 8.0,I mixed them up. sorry.
if still working could you share a simple example project that can reproduce the problem with me? I will check it. my email is shiwei.liang@volosoft.com
Hi,
Blazor web app has two runtimes(Blazor server/ webassembly).
The TokenProvider is only working for webassembly, that's why it's not working.
Could you share a simple example project that can reproduce the problem with me? I will check it. my email is shiwei.liang@volosoft.com
Hi,
You can add your MyOrganizationUnitEto to override the OrganizationUnitEto.
public class MyOrganizationUnitEto
{
public Guid? ParentId { get; set}
....
}
....
CreateMap<OrganizationUnit, MyOrganizationUnitEto>();
....
Configure<AbpDistributedEntityEventOptions>(options =>
{
options.AutoEventSelectors.Add<OrganizationUnit>();
options.EtoMappings.RemoveAll(x => x.Value.EtoType == typeof(OrganizationUnitEto);
options.EtoMappings.Add<OrganizationUnit, MyOrganizationUnitEto>(typeof(AbpIdentityDomainModule));
});
I will add the ParentId to OrganizationUnitEto in the next version https://github.com/abpframework/abp/issues/20136
Hi,
You can inject the IAbpAccessTokenProvider to get access token