1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-21 12:05:42 +01:00

[fix] Correct a typo in the event name of a stripe webhook (#2023)

This commit is contained in:
Addison Beck 2022-05-31 12:08:34 -04:00 committed by GitHub
parent 052f760fbb
commit 39ba68e66b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@
public static class HandledStripeWebhook
{
public static string SubscriptionDeleted => "customer.subscription.deleted";
public static string SubscriptionUpdated => "customer.subscriptions.updated";
public static string SubscriptionUpdated => "customer.subscription.updated";
public static string UpcomingInvoice => "invoice.upcoming";
public static string ChargeSucceeded => "charge.succeeded";
public static string ChargeRefunded => "charge.refunded";