27 lines
613 B
Plaintext
27 lines
613 B
Plaintext
@page "/admin/system/files"
|
|
|
|
@using MoonCore.Attributes
|
|
@using MoonCore.Helpers
|
|
@using MoonCore.Blazor.Tailwind.Fm
|
|
@using Moonlight.Client.Implementations
|
|
|
|
@attribute [RequirePermission("admin.system.overview")]
|
|
|
|
@inject HttpApiClient ApiClient
|
|
|
|
<div class="mb-3">
|
|
<NavTabs Index="2" Names="UiConstants.AdminNavNames" Links="UiConstants.AdminNavLinks" />
|
|
</div>
|
|
|
|
<FileManager FileSystemProvider="FileSystemProvider" />
|
|
|
|
@code
|
|
{
|
|
private IFileSystemProvider FileSystemProvider;
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
FileSystemProvider = new SysFileSystemProvider(ApiClient);
|
|
}
|
|
}
|