Activities of "maliming"

hi ChetanKumbhar

Can you share a simple project to reproduce your problem? liming.ma@volosoft.com

Answer

hi serdar.genc@talentra.net

How many permissions does your app have? You can resolve it by configure FormOptions. I will check and fix it.

Configure<FormOptions>(options =>
{
    options.ValueCountLimit = 1024 * 2;
    //options.
});

The fix PR https://github.com/abpframework/abp/pull/8810

How do i find triggered method or event on user email id or role changed on abp user profile ?

You should consider PublishAsync the event yourself.

How do i restrict user from changing email ?

You can override the ProfileAppService of the identity pro module, which currently change user info.

You can depend on these module in HttpApi.Host project.

Answer

hi serdar.genc@talentra.net

Open the GlobalFeatureConfigurator class in the Domain.Shared project and add the following codes to the Configure method.


OneTimeRunner.Run(() =>
{
    GlobalFeatureManager.Instance.Modules.CmsKit(cmsKit =>
    {
        cmsKit.EnableAll();
    });

    GlobalFeatureManager.Instance.Modules.CmsKitPro(cmsKitPro =>
    {
        cmsKitPro.EnableAll();
    });
});

hi

There is no menu to show.

hi

Please follow this https://github.com/abpframework/abp/issues/8794

hi

You can refer the unit test of abp framework.

https://github.com/abpframework/abp/blob/dev/framework/test/Volo.Abp.TestApp.Tests/Volo/Abp/TestApp/Application/PersonAppService_Tests.cs#L27 https://github.com/abpframework/abp/blob/dev/framework/test/Volo.Abp.TestApp.Tests/Volo/Abp/TestApp/Application/PersonAppService_Tests.cs#L55

https://docs.abp.io/en/abp/latest/Multi-Tenancy#change-the-current-tenant

hi

I think this is because the HttpApi.Host project didn't have much UI. It only depend the Volo.Abp.Account.Pro.Public.Web.IdentityServer by default.

hi selinkoykiran

Can you share the steps to reproduce this?

You can use the free start template, https://abp.io/get-started

Showing 10051 to 10060 of 10645 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 12, 2025, 10:20