From 3c5e9ac1aa711d6e69e475c10119ffdf16f2df94 Mon Sep 17 00:00:00 2001 From: Shane Melton Date: Mon, 5 Feb 2024 09:52:36 -0800 Subject: [PATCH] [AC-2143] Use flexible collections logic in GetManyDetails_vNext() (#3731) --- src/Api/Controllers/CollectionsController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Api/Controllers/CollectionsController.cs b/src/Api/Controllers/CollectionsController.cs index ba3647b25e..cd933739ff 100644 --- a/src/Api/Controllers/CollectionsController.cs +++ b/src/Api/Controllers/CollectionsController.cs @@ -547,7 +547,7 @@ public class CollectionsController : Controller { // We always need to know which collections the current user is assigned to var assignedOrgCollections = await _collectionRepository - .GetManyByUserIdWithAccessAsync(_currentContext.UserId.Value, orgId, false); + .GetManyByUserIdWithAccessAsync(_currentContext.UserId.Value, orgId, true); var readAllAuthorized = (await _authorizationService.AuthorizeAsync(User, CollectionOperations.ReadAllWithAccess(orgId))).Succeeded;