Attività di "Johannes"

  • ABP Framework version: v3.3.0
  • UI type: Angular
  • DB provider: EF Core

We've implemented our own login controller for use by an external app. The login endpoint uses the signinmanager: protected SignInManager<Volo.Abp.Identity.IdentityUser> SignInManager { get; } And logs in:

var signInResult = await SignInManager.PasswordSignInAsync(
                login.UserNameOrEmailAddress,
                login.Password,
                login.RememberMe,
                true
);

This works fine for users without 2-factor enabled. When 2-factor is enabled, we get the expected 2-factor cookie back:

Which we then provide in the header when calling a SendSmsSecurityCode endpoint.

This it where we get confused: SignInManager.GetTwoFactorAuthenticationUserAsync() returns null. How can this happen? Are we doing something wrong?

When expanding and minimizing categories in the menu by pressing the little arrow, the buttons appear with an animation. When expanding, the buttons are animated from top to bottom, but when minimizing they move from right to left. How and where in the source can we modify this behaviour? We'd like the minimizing to move from bottom to top.

  • ABP Framework version: v3.3.0
  • UI type: Angular
  • Tiered (MVC) or Identity Server Seperated (Angular): no
  • UI type: Angular

We would like to simplify the login process, by removing the need to specify tenant. Users will have to be unique across tenants, and the system will choose the tenant based on the username entered during login.

Can we get some pointers on how to achieve this functionality?

Thank you.

1 - 3 di 3
Made with ❤️ on ABP v8.2.0-preview Updated on marzo 25, 2024, 15:11