1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-24 12:35:25 +01:00
This commit is contained in:
Jonas Hendrickx 2024-10-11 15:33:37 +02:00
parent ae82074dcb
commit 58cf8b183c

View File

@ -74,6 +74,8 @@ public class StripeController(
}, },
} }
}; };
try
{
var taxCalculation = await stripeAdapter.CalculateTaxAsync(options); var taxCalculation = await stripeAdapter.CalculateTaxAsync(options);
var response = new CalculateTaxResponseModel var response = new CalculateTaxResponseModel
{ {
@ -86,4 +88,9 @@ public class StripeController(
}; };
return TypedResults.Ok(response); return TypedResults.Ok(response);
} }
catch (StripeException e)
{
return TypedResults.BadRequest(e.Message);
}
}
} }