LANCommander/LANCommander.Server/UI/Pages/Games/Edit/Keys.razor
2025-01-21 21:54:00 -06:00

10 lines
246 B
Text

@page "/Games/{id:guid}/Keys"
@attribute [Authorize(Roles = RoleService.AdministratorRoleName)]
<GameEditView Id="Id" Title="Keys">
<KeysEditor GameId="context.Id"/>
</GameEditView>
@code {
[Parameter] public Guid Id { get; set; }
}