Activities of "deathmid2233@gmail.com"

This is a bug, we will fix it. by the way, ticket refunded : )

For now, can you try again after creating the following class under the **.Web/Pages/Account/Components/ProfileManagementGroup/PersonalInfo folders:

    [Dependency(ReplaceServices = true)] 
    [ExposeServices(typeof(ConfirmPhoneNumberModalModel))] 
    public class MyConfirmPhoneNumberModalModel : ConfirmPhoneNumberModalModel 
    { 
        private readonly IAccountAppService _accountAppService; 
         
        public MyConfirmPhoneNumberModalModel(IAccountAppService accountAppService) : base(accountAppService) 
        { 
            _accountAppService = accountAppService; 
        } 
 
        public override async Task OnPostAsync() 
        { 
            await _accountAppService.ConfirmPhoneNumberAsync(new ConfirmPhoneNumberInput 
            { 
                UserId = CurrentUser.GetId(), 
                Token = PhoneConfirmationToken 
            }); 
        } 
    } 

Note: Folders are just for keeping order :)

Please let me know if it works in your case.

yes, it works

Hi,

I need the following information to better answer your question:

  • Your ABP Framework version.
  • Your User Interface type (Angular/MVC etc.)

ABP version 4.3.2 Your User Interface type: MVC

{"error":{"code":null,"message":"There is no entity IdentityUser with id = 00000000-0000-0000-0000-000000000000!","details":null,"data":null,"validationErrors":null}}

I successfully configured Twilio And received a text message

When you submit a point, it pops up There is no entity IdentityUser with id = 00000000-0000-0000-0000-000000000000!

Showing 21 to 23 of 23 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11