ABP Framework version: v9.0.2
UI Type: Angular
Database System: EF Core (SQL Server)
How to implement custom logic for external login with azureAD to create user directly in db instead of showing register form.
3 Answer(s)
-
0
hi
You can override the
OnGetExternalLoginCallbackAsync
method ofLoginModel
Download the account pro module to check the implementation.
Thanks.
-
0
how can i achieve that? Can you please explain? Is it required to download the module?
-
0
hi
You can download the account pro source code to check the
OnGetExternalLoginCallbackAsync
method ofLoginModel(account/src/Volo.Abp.Account.Pro.Public.Web/Pages/Account/Login.cshtml.cs)
Then override the
OnGetExternalLoginCallbackAsync
method to implement your needs.https://abp.io/support/questions/632/How-can-I-download-the-source-code-of-the-framework-Angular-packages-theme-and-pro-modules
https://abp.io/support/questions/160/How-to-customize-an-ABP-project
Thanks.