hi
Can you add the AutoFac module dependency?
https://abp.io/docs/latest/framework/fundamentals/autofac-integration
Thanks.
hi
Rename it to MyStripePaymentGateway and add it to Gateways.
Configure<PaymentOptions>(options =>
{
options.Gateways.RemoveAll(x => x.Key == StripeConsts.GatewayName)
options.Gateways.Add(
new PaymentGatewayConfiguration(
StripeConsts.GatewayName,
new FixedLocalizableString("Stripe"),
isSubscriptionSupported: true,
typeof(MyStripePaymentGateway)
)
);
});
Thanks. 🙏
https://abp.io/docs/latest/framework/ui/angular/environment#remoteenvironment
hi
You can add a hybrid implementation of IEmailSender.
Inject the MailKitSmtpEmailSender and SmtpEmailSender into your hybrid class.
Check the current tenant ID to determine which one to use for sending the email.
Thanks.
hi
We will fix it in the next patch version.
You can override the MenuFilterComponent to replace it.
Thanks.
hi
I have sent the source code.
You can add your custom field in the StripePaymentGateway service.
Thanks.
hi
Can you share your contributor and microservice tempate service DataSeeder class code?
Thanks.
hi
We will improve it in the next 9.3.x patch version.
Thanks.