Skip to content

Commit 5d58913

Browse files
AndyButlandCopilot
authored andcommitted
Added management API endpoint, service and repository for retrieval of references from the recycle bin (#18882)
* Added management API endpoint, service and repository for retrieval of references from the recycle bin. * Update src/Umbraco.Cms.Api.Management/Controllers/Document/RecycleBin/ReferencedByDocumentRecycleBinController.cs Co-authored-by: Copilot <[email protected]> * Removed unused code. --------- Co-authored-by: Copilot <[email protected]>
1 parent 530c4f9 commit 5d58913

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/Umbraco.Core/Services/TrackedReferencesService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public async Task<PagedModel<RelationItemModel>> GetPagedRelationsForRecycleBinA
4545
return await Task.FromResult(pagedModel);
4646
}
4747

48-
public Task<PagedModel<RelationItemModel>> GetPagedDescendantsInReferencesAsync(Guid parentKey, long skip, long take, bool filterMustBeIsDependency)
48+
public async Task<PagedModel<RelationItemModel>> GetPagedDescendantsInReferencesAsync(Guid parentKey, long skip, long take, bool filterMustBeIsDependency)
4949
{
5050
using ICoreScope scope = _scopeProvider.CreateCoreScope(autoComplete: true);
5151

0 commit comments

Comments
 (0)