mirror of
https://github.com/bitwarden/server.git
synced 2025-07-13 05:38:25 -05:00
[PM-12420] Stripe events recovery (#4793)
* Billing: Add event recovery endpoints * Core: Add InternalBilling to BaseServiceUriSettings * Admin: Scaffold billing section * Admin: Scaffold ProcessStripeEvents section * Admin: Implement event processing * Run dotnet format
This commit is contained in:
@ -140,6 +140,7 @@ public class GlobalSettings : IGlobalSettings
|
||||
private string _internalSso;
|
||||
private string _internalVault;
|
||||
private string _internalScim;
|
||||
private string _internalBilling;
|
||||
|
||||
public BaseServiceUriSettings(GlobalSettings globalSettings)
|
||||
{
|
||||
@ -218,6 +219,12 @@ public class GlobalSettings : IGlobalSettings
|
||||
get => _globalSettings.BuildInternalUri(_scim, "scim");
|
||||
set => _internalScim = value;
|
||||
}
|
||||
|
||||
public string InternalBilling
|
||||
{
|
||||
get => _globalSettings.BuildInternalUri(_internalBilling, "billing");
|
||||
set => _internalBilling = value;
|
||||
}
|
||||
}
|
||||
|
||||
public class SqlSettings
|
||||
|
Reference in New Issue
Block a user