mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
Change error message (#4175)
This commit is contained in:
parent
fc1c488a78
commit
576b78d739
@ -483,7 +483,8 @@ public class AccountController : Controller
|
||||
if (orgUser.Status == OrganizationUserStatusType.Invited)
|
||||
{
|
||||
// Org User is invited - they must manually accept the invite via email and authenticate with MP
|
||||
throw new Exception(_i18nService.T("UserAlreadyInvited", email, organization.DisplayName()));
|
||||
// This allows us to enroll them in MP reset if required
|
||||
throw new Exception(_i18nService.T("AcceptInviteBeforeUsingSSO", organization.DisplayName()));
|
||||
}
|
||||
|
||||
// Accepted or Confirmed - create SSO link and return;
|
||||
|
@ -529,8 +529,8 @@
|
||||
<data name="NoSeatsAvailable" xml:space="preserve">
|
||||
<value>No seats available for organization, '{0}'</value>
|
||||
</data>
|
||||
<data name="UserAlreadyInvited" xml:space="preserve">
|
||||
<value>User, '{0}', has already been invited to this organization, '{1}'. Accept the invite in order to log in with SSO.</value>
|
||||
<data name="AcceptInviteBeforeUsingSSO" xml:space="preserve">
|
||||
<value>To accept your invite to {0}, you must first log in using your master password. Once your invite has been accepted, you will be able to log in using SSO.</value>
|
||||
</data>
|
||||
<data name="UserAlreadyExistsInviteProcess" xml:space="preserve">
|
||||
<value>You were removed from the organization managing single sign-on for your account. Contact the organization administrator for help regaining access to your account.</value>
|
||||
@ -540,7 +540,7 @@
|
||||
</data>
|
||||
<data name="RedirectGet" xml:space="preserve">
|
||||
<value>Redirect GET</value>
|
||||
<comment>An OIDC Connect Redirect Behavior, Redirect; Emits a 302 response
|
||||
<comment>An OIDC Connect Redirect Behavior, Redirect; Emits a 302 response
|
||||
to redirect the user agent to the OpenID Connect provider using a GET request.</comment>
|
||||
</data>
|
||||
<data name="FormPost" xml:space="preserve">
|
||||
@ -685,4 +685,4 @@
|
||||
<data name="InvalidSsoRedirectToken" xml:space="preserve">
|
||||
<value>Single sign on redirect token is invalid or expired.</value>
|
||||
</data>
|
||||
</root>
|
||||
</root>
|
||||
|
Loading…
x
Reference in New Issue
Block a user