0
ITWebTeam created
Hi,
My product version is ASP.NET CORE MVC & jQuery .NET Core 3.1 v9.0.0
How would we add an Active Directory Group to an ABP Role and have it grant the appropriate permissions?
Thanks, Ron
1 Answer(s)
-
0
Hi,
You can extend Role entity as explaind here You can also replace default LDAP auth souce by creating your own implementation similar to https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp.Zero.Ldap/Ldap/Authentication/LdapAuthenticationSource.cs
And replace it in the PreInitialize of your Core module;
Configuration.ReplaceService<IExternalAuthenticationSource, MyLdapAuthenticationSource>(DependencyLifeStyle.Transient);