* Display the latest update date in document collection view * Fix issue with service registration of physical file system tree service. * Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Laura Neto <12862535+lauraneto@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
14 lines
454 B
C#
14 lines
454 B
C#
using Umbraco.Cms.Core.IO;
|
|
|
|
namespace Umbraco.Cms.Api.Management.Services.FileSystem;
|
|
|
|
public class PhysicalFileSystemTreeService : FileSystemTreeServiceBase, IPhysicalFileSystemTreeService
|
|
{
|
|
private readonly IFileSystem _physicalFileSystem;
|
|
|
|
protected override IFileSystem FileSystem => _physicalFileSystem;
|
|
|
|
public PhysicalFileSystemTreeService(IPhysicalFileSystem physicalFileSystem) =>
|
|
_physicalFileSystem = physicalFileSystem;
|
|
}
|