hi
If your username belongs to a tenant, you can add __tenant: yourtenant to your Postman request header.
Thanks.
hi
I am unable to run the app that i shared, what are the steps that you followed to run the app.
I use the run-tye.ps1 command to run the backend, and yarn start for Angular.
Our project was previously on version 7.2.2, and we migrated it to 8.2.1. Could this migration be causing the issue?
Maybe. Can you share your project?
We are currently using MSG91 as our service provider for email and SMS. If we want to implement OTP-based MFA, what changes do we need to apply?
Only enabling 2FA is enough.
Thanks.
hi
Is your webapp tiered?
abp/application-configuration/
Does this endpoint's website depend on your feature definition package?
How can I reproduce this problem in a new webapp template project?
Can you share the code and steps?
liming.ma@volosoft.com
Thanks.
hi
If you're trying to do this for the ExtraProperties field in the database, you can't. Because the properties set in the ExtraProperties field are stored as a single JSON object.
However, you can refer to this document which explains the more natural way to do it.
https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Extending-Entities#entity-extensions-ef-core
If you have already mapped the property to ef core as stated in the document, you can use the query, below. Because the property you add is kept as a separate column in the database table.
var query = (await GetQueryableAsync()).Where(u => EF.Property<string>(u, "SocialSecurityNumber") == "123");
Thanks.
hi
requires an interaction with the user,
https://login.microsoftonline.com/{tenant}/oauth2/v2.0/logout?post_logout_redirect_uri={callback_uri}
Can you share a GIF of this logout endpoint?
If users need to click a button to complete the logout process, that's the only way we can do it. Not all external logins support sign-out.
Thanks.
hi
See https://abp.io/support/questions/7044/Unable-to-get-access-token-in-request-response#answer-3a11f692-0164-97bf-03f4-e32afb3b4de4
Thanks : )