Skip to content

Commit

Permalink
[PM-14862] Update documentation response type. (#5083)
Browse files Browse the repository at this point in the history
Update documentation to align with the code's response type.
  • Loading branch information
JimmyVo16 authored Dec 2, 2024
1 parent 193f8d6 commit ac42b81
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.Net;
using Bit.Api.AdminConsole.Public.Models.Request;
using Bit.Api.AdminConsole.Public.Models.Response;
using Bit.Api.Models.Public.Response;
using Bit.Core.Context;
using Bit.Core.Enums;
Expand Down Expand Up @@ -38,7 +37,7 @@ public OrganizationController(
/// </remarks>
/// <param name="model">The request model.</param>
[HttpPost("import")]
[ProducesResponseType(typeof(MemberResponseModel), (int)HttpStatusCode.OK)]
[ProducesResponseType(typeof(OkResult), (int)HttpStatusCode.OK)]
[ProducesResponseType(typeof(ErrorResponseModel), (int)HttpStatusCode.BadRequest)]
public async Task<IActionResult> Import([FromBody] OrganizationImportRequestModel model)
{
Expand Down

0 comments on commit ac42b81

Please sign in to comment.