1
0
mirror of https://github.com/bitwarden/server synced 2026-01-04 17:43:53 +00:00

Improve Swagger OperationIDs for Tools (#6239)

This commit is contained in:
Daniel García
2025-09-03 11:38:01 +02:00
committed by GitHub
parent d2d3e0f11b
commit 0bfbfaa17c
3 changed files with 12 additions and 12 deletions

View File

@@ -63,7 +63,7 @@ public class ImportCiphersController : Controller
}
[HttpPost("import-organization")]
public async Task PostImport([FromQuery] string organizationId,
public async Task PostImportOrganization([FromQuery] string organizationId,
[FromBody] ImportOrganizationCiphersRequestModel model)
{
if (!_globalSettings.SelfHosted &&

View File

@@ -192,7 +192,7 @@ public class SendsController : Controller
}
[HttpGet("")]
public async Task<ListResponseModel<SendResponseModel>> Get()
public async Task<ListResponseModel<SendResponseModel>> GetAll()
{
var userId = _userService.GetProperUserId(User).Value;
var sends = await _sendRepository.GetManyByUserIdAsync(userId);