mirror of
https://github.com/bitwarden/server
synced 2025-12-24 12:13:17 +00:00
* Refactor Core.Billing prior to adding new logic * Add ProviderBillingQueries.GetSubscriptionData * Add ProviderBillingController.GetSubscriptionAsync
12 lines
379 B
C#
12 lines
379 B
C#
namespace Bit.Core.Billing;
|
|
|
|
public static class Utilities
|
|
{
|
|
public const string BraintreeCustomerIdKey = "btCustomerId";
|
|
|
|
public static BillingException ContactSupport(
|
|
string internalMessage = null,
|
|
Exception innerException = null) => new("Something went wrong with your request. Please contact support.",
|
|
internalMessage, innerException);
|
|
}
|