0
azmat created
Hi,
Can you provide detail documentation for ADFS integration.
- when adfs configuration is done what are the properties which are required and what should be their name.
- when user will access the site for the first time, after getting a token from ADFS we need to add a user to Users table and default roles, may i know the method and class in which i can do that.
1 Answer(s)
-
0
Hi @azmat,
You need to fill https://github.com/aspnetzero/aspnet-zero-core/blob/dev/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Web.Mvc/appsettings.json#L39 for ASP.NET Core & Jquery version.
The user is created automatically here https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp.ZeroCore/Authorization/AbpLoginManager.cs#L282, so you can override it in your LoginManager class and assign additional roles.
Or better, you can select some Roles as Default in the role management page and those roles will be assigned automatically.