0
DominaTang created
When upgrade to Abp 9.1.1, we still keep existing .Net projects instead of single project for each Micro Service. I noticed there are IdentityServiceDynamicPermissionDefinitionsChangedEventHandler.cs and IdentityServiceChangeIdentityPasswordPolicySettingDefinitionProvider.cs which doesn't exist in codebase in ABP 8.
If we keep existing ABP 8 solution layout, do we need to add above files somewhere?
1 Answer(s)
-
0
hi
IdentityServiceChangeIdentityPasswordPolicySettingDefinitionProvider
will change the default password policy. You can remove it if you don't need it.IdentityServiceDynamicPermissionDefinitionsChangedEventHandler
will add the permissions to theadmin
role during all microservice starts. You should keep it.Thanks.