mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 08:02:49 -05:00
[EC-235] Give Admins (and above) access to all items (#2036)
This commit is contained in:
@ -88,10 +88,9 @@ namespace Bit.Api.Controllers
|
||||
}
|
||||
|
||||
IEnumerable<Collection> orgCollections;
|
||||
if (await _currentContext.OrganizationOwner(orgIdGuid))
|
||||
if (await _currentContext.OrganizationAdmin(orgIdGuid))
|
||||
{
|
||||
// User may be a Provider for the organization, in which case GetManyByUserIdAsync won't return any results
|
||||
// But they have access to all organization collections, so we can safely get by orgId instead
|
||||
// Admins, Owners and Providers can access all items even if not assigned to them
|
||||
orgCollections = await _collectionRepository.GetManyByOrganizationIdAsync(orgIdGuid);
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user