From a75077d703570b7fba6bb058d2feaa923b24c60d Mon Sep 17 00:00:00 2001
From: Chad Scharf <3904944+cscharf@users.noreply.github.com>
Date: Wed, 16 Sep 2020 15:02:18 -0400
Subject: [PATCH] Fixed resource and err msg for user provisioning (#939)
---
bitwarden_license/src/Sso/Controllers/AccountController.cs | 2 +-
src/Core/Resources/SharedResources.en.resx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/bitwarden_license/src/Sso/Controllers/AccountController.cs b/bitwarden_license/src/Sso/Controllers/AccountController.cs
index 457298c8c8..b11f798500 100644
--- a/bitwarden_license/src/Sso/Controllers/AccountController.cs
+++ b/bitwarden_license/src/Sso/Controllers/AccountController.cs
@@ -449,7 +449,7 @@ namespace Bit.Sso.Controllers
if (existingUser != null)
{
// TODO: send an email inviting this user to link SSO to their account?
- throw new Exception(_i18nService.T("NoDomainHintProvided"));
+ throw new Exception(_i18nService.T("UserAlreadyExistsUseLinkViaSso"));
}
// Create user record
diff --git a/src/Core/Resources/SharedResources.en.resx b/src/Core/Resources/SharedResources.en.resx
index f0aa35a372..ffd9246aea 100644
--- a/src/Core/Resources/SharedResources.en.resx
+++ b/src/Core/Resources/SharedResources.en.resx
@@ -523,7 +523,7 @@
User, '{0}', has already been invited to this organization, '{1}'
-
+
User already exists, please link account to SSO after logging in