mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
Adding error and aligning message.
This commit is contained in:
parent
e78c9f65b4
commit
856374b3b2
@ -22,3 +22,9 @@ public record PasswordManagerPlanOnlyAllowsMaxAdditionalSeatsError(PasswordManag
|
|||||||
|
|
||||||
public const string Code = "Organization plan allows a maximum of {0} additional seats.";
|
public const string Code = "Organization plan allows a maximum of {0} additional seats.";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public record PasswordManagerMustHaveSeatsError(PasswordManagerSubscriptionUpdate InvalidRequest)
|
||||||
|
: Error<PasswordManagerSubscriptionUpdate>(Code, InvalidRequest)
|
||||||
|
{
|
||||||
|
public const string Code = "You do not have any Password Manager seats!";
|
||||||
|
}
|
||||||
|
@ -6,5 +6,5 @@ namespace Bit.Core.AdminConsole.OrganizationFeatures.OrganizationUsers.InviteUse
|
|||||||
public record PaymentCancelledSubscriptionError(PaymentsSubscription InvalidRequest)
|
public record PaymentCancelledSubscriptionError(PaymentsSubscription InvalidRequest)
|
||||||
: Error<PaymentsSubscription>(Code, InvalidRequest)
|
: Error<PaymentsSubscription>(Code, InvalidRequest)
|
||||||
{
|
{
|
||||||
public const string Code = "Cannot autoscale with a canceled subscription.";
|
public const string Code = "You do not have an active subscription. Reinstate your subscription to make changes.";
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user