0
werner@deventerprise.com created
- ABP Framework version: v5.3.0
- UI type: MVC
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): Tiered
- Exception message and stack trace: None
- Steps to reproduce the issue: None
In the migration guide for 5.3 (https://docs.abp.io/en/commercial/5.3/migration-guides/v5_3) it mentions having to configure AbpSaasPaymentOptions
to enable payments. In which module configuration should this go in, Application, Domain, Shared?
2 Answer(s)
-
0
hi
You can configure it in your startup module. eg Host or Web.
-
0
Thanks,
Added
private void ConfigureSaasPaymentOptions(IConfiguration configuration) { Configure<AbpSaasPaymentOptions>(options => { options.IsPaymentSupported = true; }); }
and called it from
ConfigureServices