Activities of "vproswicks"

We recently migrated from v7.2 (standard) to v7.3 commercial, and at the same time from Identity Server to OpenIddict.

We use the following to provide our own SignInManager and UserManager for the purpose of responding to various login steps:

        PreConfigure<IdentityBuilder>(identityBuilder =>
        {
            identityBuilder.AddRoleManager<VpxRoleManager>();
            identityBuilder.AddSignInManager<VpxSignInManager>();
            identityBuilder.AddUserManager<VpxUserManager>();
        });

It looks like UserManager.FindByNameAsync is no longer called, or no longer called for every login attempt. We've been hooking that function to perform as-needed synchronisation of user account details from an external source.

Are we missing a configuration step or has the workflow changed and we should be hooking a different function now?

  • ABP Framework version: v7.3.0
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
顯示 1 個紀錄的 1 到 1 個.
Made with ❤️ on ABP v8.2.0-preview Updated on 3月 25, 2024, 15:11