10 lines
306 B
Text
10 lines
306 B
Text
@page "/Games/{id:guid}/Media"
|
|
@attribute [Authorize(Roles = RoleService.AdministratorRoleName)]
|
|
|
|
<GameEditView Id="Id" Title="Media">
|
|
<MediaEditor @bind-Values="context.Media" GameId="context.Id" GameTitle="@context.Title" />
|
|
</GameEditView>
|
|
|
|
@code {
|
|
[Parameter] public Guid Id { get; set; }
|
|
}
|