mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 08:32:50 -05:00

* Ensuring customer has address before enabling automatic tax * StripeController fixes * Refactored automatic tax logic to use customer's automatic tax values * Downgraded refund error in paypal controller to be a warning * Resolved broken test after downgrading error to warning * Resolved broken paypal unit tests on windows machines --------- Co-authored-by: Lotus Scott <148992878+lscottbw@users.noreply.github.com>
10 lines
321 B
C#
10 lines
321 B
C#
namespace Bit.Core.Billing.Constants;
|
|
|
|
public static class StripeCustomerAutomaticTaxStatus
|
|
{
|
|
public const string Failed = "failed";
|
|
public const string NotCollecting = "not_collecting";
|
|
public const string Supported = "supported";
|
|
public const string UnrecognizedLocation = "unrecognized_location";
|
|
}
|