LANCommander/LANCommander.Server/UI/Pages/Files.razor

8 lines
214 B
Text

@page "/Files"
@attribute [Authorize(Roles = RoleService.AdministratorRoleName)]
<FileManager WorkingDirectory="@RootPath" />
@code {
string RootPath = Path.GetPathRoot(Directory.GetCurrentDirectory());
}