mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
1 seat required
This commit is contained in:
parent
2ad365706c
commit
9db19fa540
@ -384,6 +384,11 @@ namespace Bit.Core.Services
|
|||||||
throw new BadRequestException($"Plan has a minimum of {plan.BaseSeats} seats.");
|
throw new BadRequestException($"Plan has a minimum of {plan.BaseSeats} seats.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(newSeatTotal <= 0)
|
||||||
|
{
|
||||||
|
throw new BadRequestException("You must have at least 1 seat.");
|
||||||
|
}
|
||||||
|
|
||||||
var additionalSeats = newSeatTotal - plan.BaseSeats;
|
var additionalSeats = newSeatTotal - plan.BaseSeats;
|
||||||
if(plan.MaxAdditionalSeats.HasValue && additionalSeats > plan.MaxAdditionalSeats.Value)
|
if(plan.MaxAdditionalSeats.HasValue && additionalSeats > plan.MaxAdditionalSeats.Value)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user