mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
[AC-1772] Check null or whitespace on GatewayCustomerId
and BillingEmail
(#3398)
* Check null or whitespace on GatewayCustomerId and BillingEmail * Fixed expiration input
This commit is contained in:
parent
abc7b35a3d
commit
cfe9812724
@ -215,7 +215,10 @@ public class OrganizationsController : Controller
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
await _stripeSyncService.UpdateCustomerEmailAddress(organization.GatewayCustomerId, organization.BillingEmail);
|
if (!string.IsNullOrWhiteSpace(organization.GatewayCustomerId) && !string.IsNullOrWhiteSpace(organization.BillingEmail))
|
||||||
|
{
|
||||||
|
await _stripeSyncService.UpdateCustomerEmailAddress(organization.GatewayCustomerId, organization.BillingEmail);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
catch (StripeException stripeException)
|
catch (StripeException stripeException)
|
||||||
{
|
{
|
||||||
|
@ -259,7 +259,7 @@
|
|||||||
<div class="col-sm">
|
<div class="col-sm">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label asp-for="ExpirationDate"></label>
|
<label asp-for="ExpirationDate"></label>
|
||||||
<input type="datetime-local" class="form-control" asp-for="ExpirationDate" readonly='@(!canEditLicensing)'>
|
<input type="datetime-local" class="form-control" asp-for="ExpirationDate" readonly='@(!canEditLicensing)' step="1">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user