mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
[AC-1612] Updated CurrentContext.ViewAssignedCollections to check if the user has CreateNewCollections permission (#3233)
* [AC-1612] Updated CurrentContext.ViewAssignedCollections to check if the user has CreateNewCollections permission * [AC-1612] Added comment to clarify the requirement of the added check in ViewAssignedCollections
This commit is contained in:
parent
952e77d3d7
commit
8c75326439
@ -358,7 +358,9 @@ public class CurrentContext : ICurrentContext
|
|||||||
|
|
||||||
public async Task<bool> ViewAssignedCollections(Guid orgId)
|
public async Task<bool> ViewAssignedCollections(Guid orgId)
|
||||||
{
|
{
|
||||||
return await EditAssignedCollections(orgId) || await DeleteAssignedCollections(orgId);
|
return await CreateNewCollections(orgId) // Required to display the existing collections under which the new collection can be nested
|
||||||
|
|| await EditAssignedCollections(orgId)
|
||||||
|
|| await DeleteAssignedCollections(orgId);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<bool> ManageGroups(Guid orgId)
|
public async Task<bool> ManageGroups(Guid orgId)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user