1
0
mirror of https://github.com/bitwarden/server synced 2025-12-16 08:13:33 +00: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:
Alex Morask
2024-09-26 09:18:21 -04:00
committed by Alex Morask
parent 150c7808dc
commit cd43535e66
21 changed files with 379 additions and 3 deletions

View File

@@ -20,4 +20,5 @@ public interface IBaseServiceUriSettings
public string InternalVault { get; set; }
public string InternalSso { get; set; }
public string InternalScim { get; set; }
public string InternalBilling { get; set; }
}