Activities of "enisn"

Thank you for your well-implemented sharing @hakan.uskaner.

I'm closing this issue now

You don't need to manipulate the original module file also you shouldn't do that.

Module dependencies will be loaded in order. So your module or app will work at the end. So, you can re-configure options that you need to change.

If a module defines an Option you can re-configure it in your module and override settings.

[DependsOn(typeof(OtherModule))]
public class YourModule : AbpModule
{
    public override void ConfigureServices(ServiceConfigurationContext context)
    {
        Configure<OtherModuleOptions>(options =>
        {
            options.IsEnabled = false;
            // ...
            // Just re-configure the module here.
        });   
    }
}

Replacing Services.

You can use [ExposeServices] [Dependency] with ReplaceServices property as true to replace existing servvices


If you please share what you exactly replace or customize I can say something specific.

Have you tried to call HardDeleteAsync method to delete permanently ISoftDelete objects?

_repository.HardDeleteAsync(exports);

Make sure it's not marked as content or something else in your .csproj file.

There shouldn't be any Build action for that file.

Hi @balessi75

You can create abp.resourcemapping.js manually in your project. You can find the default template of it below: https://github.com/abpframework/abp/blob/b920220c672d8d1fbbbae850965bb117d8a71da1/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/abp.resourcemapping.js

module.exports = {
    aliases: {

    },
    clean: [

    ],
    mappings: {

    }
};

After updating package.json and abp.resourcemapping.js files, abp install-lib command will work properly and copy your dependencies under wwwroot.

abp install-libs

Hi @adam-dot-cohen

Unfortunately, we don't have that kind of a version of Lepton. We can't provide plain HTML + CSS lepton right now.

We can provide only Angular, MVC Razor Pages and Blazor packages source code. At the moment, as I see your license doesn't include getting that package source codes.

Hi @sitekari

The chat module doesn't support Blazor UI yet. https://commercial.abp.io/modules/Volo.Chat

Hi @mert.kir

You're right, it should be deleted. I've created an issue ( #11549 ) for that. It'll be included in next version (v5.2)

This exception is right. There can be a lot of users of the deleted tenant that used the application before it's deleted and the cookie'll still exist in their browsers. In that case, this exception will occur.

How did you implement MyRepositoryBase ?

Is it extended from EfCoreRepository ?

Hi @hmahmood

ABP doesn't provide any UI for pricing, plans or something like that. You have to implement your own UI for that.

When a user chooses a plan in a page designed by you, you should call Create method of IPaymentRequestAppService.

var paymentRequest = await PaymentRequestAppService.CreateAsync(
            new PaymentRequestCreateDto()
            {
                Products =
                {
                    new PaymentRequestProductCreateDto
                    {
                        PaymentType = PaymentType.Subscription,
                        Name = "Enterprise Plan",
                        Code = "EP",
                        Count = 1,
                        // Place below your created PlanId.
                        PlanId = DemoAppData.Plan_2_Id, 
                    }
                }
            });

        return LocalRedirectPreserveMethod("/Payment/GatewaySelection?paymentRequestId=" + paymentRequest.Id);
    

Subscription feature provides only C# interface. It doesn't provide built-in plans/pricing table.

Showing 341 to 350 of 489 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30