1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-22 16:57:36 +01:00

Update response code (#3949)

This commit is contained in:
Alex Morask 2024-04-01 09:13:55 -04:00 committed by GitHub
parent 66593297b9
commit 2f9daf2149
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -58,6 +58,6 @@ public class ProviderOrganizationController(
organization, organization,
requestBody.AssignedSeats); requestBody.AssignedSeats);
return TypedResults.NoContent(); return TypedResults.Ok();
} }
} }

View File

@ -163,6 +163,6 @@ public class ProviderOrganizationControllerTests
organization, organization,
requestBody.AssignedSeats); requestBody.AssignedSeats);
Assert.IsType<NoContent>(result); Assert.IsType<Ok>(result);
} }
} }