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

9 lines
214 B
Text
Raw Permalink Normal View History

2023-09-09 17:36:20 -05:00
@page "/Files"
@attribute [Authorize(Roles = RoleService.AdministratorRoleName)]
2023-09-09 17:36:20 -05:00
2023-09-11 19:33:07 -05:00
<FileManager WorkingDirectory="@RootPath" />
2023-09-09 17:36:20 -05:00
@code {
2023-09-11 19:33:07 -05:00
string RootPath = Path.GetPathRoot(Directory.GetCurrentDirectory());
2023-09-09 17:36:20 -05:00
}