Hi, there is GrantedPermissions
property in StaticRoleDefintion
that you can use when defining a static role.
You can call RoleManager.SetGrantedPermissionsAsync(staticRole.GrantedPermissions)
after CreateStaticRoles(tenant.Id)
see https://support.aspnetzero.com/QA/Questions/5637
Hi, can you share the log for the application not being able to start?
By default Azure configuration is loaded by calling .AddEnvironmentVariables()
at https://github.com/aspnetzero/aspnet-zero-core/blob/f72d4bf9ced778e06265f1c415a8553b10cbaf3d/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Core/Configuration/AppConfigurations.cs#L37
See https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/azure-apps/
Related https://github.com/aspnetzero/aspnet-zero-core/issues/1827
Hi, you can follow this issue for the Calendar module.
https://github.com/aspnetzero/aspnet-zero-core/issues/987
Hi, you can create the Enum in *.Shared
project (it is desgined to keep common class declarations & etc in the same place)
Hi, you need to login to github (the account that you linked with your ANZ license) to view the links.
Hi, can you try adding
+ [DependsOn(typeof(AbpAspNetCoreModule))]
public class GHRIntegrationModule : AbpModule {
// more code ...
}
you need to look at your angular settings (appconfig.production.json
)
For EF6, DbEntityValidationException
will be thrown instead.
See https://github.com/aspnetboilerplate/aspnetboilerplate/blob/b9326bc79d08998a6148032a9302d11959464191/src/Abp.EntityFramework/EntityFramework/AbpDbContext.cs#L213-L224