1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 16:12:49 -05:00

proration adjustments for next bill amount

This commit is contained in:
Kyle Spearrin
2017-07-29 16:59:18 -04:00
parent 89bb0a05e9
commit d6d9ceab87
2 changed files with 9 additions and 3 deletions

View File

@ -40,7 +40,8 @@ namespace Bit.Core.Services
AddOns = new AddOnsRequest(),
Options = new SubscriptionOptionsRequest
{
ProrateCharges = true
ProrateCharges = true,
RevertSubscriptionOnProrationFailure = true
}
};
@ -64,7 +65,8 @@ namespace Bit.Core.Services
new UpdateAddOnRequest
{
ExistingId = storageItem.Id,
Quantity = additionalStorage
Quantity = additionalStorage,
NeverExpires = true
}
};
}