Allows users to upload additional tools and tie them to games. This can be useful for software like map editors, trainers, etc.
11 lines
No EOL
290 B
Text
11 lines
No EOL
290 B
Text
@page "/Tools/{id:guid}/Archives"
|
|
@using LANCommander.Server.UI.Pages.Tools.Components
|
|
@attribute [Authorize(Roles = RoleService.AdministratorRoleName)]
|
|
|
|
<ToolEditView Id="Id" Title="Archives">
|
|
<ArchiveEditor />
|
|
</ToolEditView>
|
|
|
|
@code {
|
|
[Parameter] public Guid Id { get; set; }
|
|
} |