Activities of "deathmid2233@gmail.com"

Is Acme.BookStore.WebAPI dependent on Acme.BookStore.Web?

like this

Same as Acme.BookStore.Web

But does not rely on Acme.BookStore.Web

Disabling those controllers will break your project. None of the UI pages will work stable. Because javascript api calls won't work without these api's.

Acme.BookStore.Web this is WEB project

I created another WEB API project Acme.BookStore.WebAPI

I just want to open the book api controller on Acme.BookStore.WebAPI

Do you want to hide them or remove/disable them?

i want disable them

ABP Framework version: v4.3 UI type: MVC DB provider: EF Core

How to disable the API controller of the default module?

I tried to comment part of the code But no effect

what should I do?

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 11 to 17 of 17 entries
Made with ❤️ on ABP v9.1.0-rc.1. Updated on January 17, 2025, 14:13