1
0
mirror of https://github.com/bitwarden/server synced 2026-03-02 11:21:31 +00:00

Update method and parameter names

This commit is contained in:
Sven
2026-01-23 12:49:53 -06:00
parent 6613f2d912
commit 32b0a2d2fd
13 changed files with 36 additions and 36 deletions

View File

@@ -81,7 +81,7 @@ public class CollectionsController : Controller
[HttpGet("details")]
public async Task<ListResponseModel<CollectionAccessDetailsResponseModel>> GetManyWithDetails(Guid orgId)
{
var allOrgCollections = await _collectionRepository.GetManyByOrganizationIdWithPermissionsAsync(
var allOrgCollections = await _collectionRepository.GetManySharedByOrganizationIdWithPermissionsAsync(
orgId, _currentContext.UserId.Value, true);
var readAllAuthorized =