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:
@@ -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 &&
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user