From 0565755e4e7be20c5d5d814c7c61f97ef0e4f30a Mon Sep 17 00:00:00 2001 From: jrmccannon Date: Wed, 19 Mar 2025 11:49:56 -0500 Subject: [PATCH] Added throwing of Failure as the previous implementation would have. --- bitwarden_license/src/Scim/Users/PostUserCommand.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/bitwarden_license/src/Scim/Users/PostUserCommand.cs b/bitwarden_license/src/Scim/Users/PostUserCommand.cs index 57233b69e7..d05188ebc4 100644 --- a/bitwarden_license/src/Scim/Users/PostUserCommand.cs +++ b/bitwarden_license/src/Scim/Users/PostUserCommand.cs @@ -98,6 +98,16 @@ public class PostUserCommand( var result = await inviteOrganizationUsersCommand.InviteScimOrganizationUserAsync(request); + if (result is Failure failure) + { + if (failure.ErrorMessages.Count != 0) + { + throw new BadRequestException(failure.ErrorMessage); + } + + return null; + } + if (result is not Success successfulResponse) { return null;