What I'm trying to do
Issue that I'm facing
using (_unitOfWorkManager.Current.SetTenantId(defaultTenant.Id))
{
var defaultTenantRolePermissions = await _roleManager.GetGrantedPermissionsAsync(defaultTenantRole);
}
Pages.Tenant.Dashboard
Pages.Administration.Tenant.Settings
However, this method works fine for all other permissions. Is there anything missing or needs to be done differently?
Thanks in advance.
Hello,
While adding the dynamic parameters for some entities such as Abp.Organizations.OrganizationUnit, where can I add the dynamic parameters as there is no place to do it in the UI for Organization Units?
Are there any entities where dynamic parameters might not be applicable?
Thanks in advance.
Hi @ismcagdas,
Thank you for getting back to me so quickly. I don't believe we are using momentFormat pipe in angular pages. I'll check and get back to you shortly.
Meantime, Is there any link in asp.net zero/asp.net boilerplate docuementation regarding this?
Thanks again.
Hello,
I have made the Clock.Provider as UTC in the application and can see the timezone setting for tenants/users. However when I set to a specific region, I am not able to see the values correctly in that locale (for ex, Login Attempts)? The values that are already in the database would be done with UnspecifiedClockProvider as per the documentation. So what would be the expected behavior here or are we missing any steps in the frontend?
Thanks in advance.
Hi,
Yes, it was an issue related to the SenGrid configuration and its resolved now.
Thanks for your help.
Hello,
I have configured SendGrid with ASP.Net zero in the following way
if (DebugHelper.IsDebug)
{
//Disabling email sending in debug mode
//Configuration.ReplaceService<IEmailSender, NullEmailSender>(DependencyLifeStyle.Transient);
}
Configuration.ReplaceService<IEmailSender, SendGridEmailSender>(DependencyLifeStyle.Transient);
The code gets executed without any errors but emails are not getting sent as exptected. If I execute the same code outside in another test project then the eamils are sent.
Is there any step that I need to do? I could not find any specific documentation for this.
Thanks in advance.