2023-09-09 17:36:20 -05:00
|
|
|
@page "/Files"
|
2024-10-16 02:06:02 -05:00
|
|
|
@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
|
|
|
}
|