2024-10-22 23:49:21 -05:00
|
|
|
@page "/Games/{id:guid}/Keys"
|
|
|
|
|
@attribute [Authorize(Roles = RoleService.AdministratorRoleName)]
|
|
|
|
|
|
|
|
|
|
<GameEditView Id="Id" Title="Keys">
|
2025-01-21 21:54:00 -06:00
|
|
|
<KeysEditor GameId="context.Id"/>
|
2024-10-22 23:49:21 -05:00
|
|
|
</GameEditView>
|
|
|
|
|
|
|
|
|
|
@code {
|
|
|
|
|
[Parameter] public Guid Id { get; set; }
|
|
|
|
|
}
|