hi @drpdev2
There are SendPhoneNumberConfirmationTokenAsync
and ConfirmPhoneNumberAsync
methods in the account\src\Volo.Abp.Account.Pro.Public.Application\Volo\Abp\Account\AccountAppService.cs
file.
The SendPhoneNumberConfirmationTokenAsync
method will generate a token and send to your phone by PhoneService
. The ConfirmPhoneNumberAsync
method will validate the token.
Your license allows you to download the source code of the module.
If you still can't solve the problem, I can view it remotely through teamviewer. liming.ma@volosoft.com
hi @hamberg The remaining count of your questions has been +1. (15 now)
hi @buaziz
Have you configured AbpExceptionLocalizationOptions?
https://github.com/abpframework/abp/pull/4869/files
hi
The problem has been fixed. You can try it again.
hi
We have confirmed the problem and we will fix it as soon as possible.
We also plan implement the linked account
. https://github.com/abpframework/abp/issues/2611
Hi
we need user to login once and next time his tenant changed, the user does not need to re-enter his credentials again - he re-logins automatically (SSO), for instance, after selecting the tenant from dropdown list in UI; Could you please suggest the solution?
If you are using the password grant type of the identity server to get the token, you can try rewrite AbpResourceOwnerPasswordValidator to implement your login again.
is there a way to get the list of all tenants of all user accounts using ABP framework? how to get the list of tenants where user name is the same?
You can use ICurrentTenant to switch tenants. Then use the related repository to query tenant and user information.
hi
I testd the automapper 10, it seems no problem.
Did you has make other changes? or can you reproduce this problem with fresh app-pro template project?
hi
Automapper 10 has breking change. Please don't upgrade it.
I create a issue to doal with the upgrade .https://github.com/abpframework/abp/issues/4918
hi
Your _accountAppService
in the DashboardMenuContributor
class hasn't been initial.
You can try to get your service through context.ServiceProvider.GetService<YourService>();
of course you can get other services.