10 lines
246 B
Text
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; }
|
|
}
|