@page "/Redistributables/{id:guid}/Options" @using LANCommander.Server.UI.Pages.Redistributables.Components @attribute [Authorize(Roles = RoleService.AdministratorRoleName)] @inject NavigationManager NavigationManager Options @code { [Parameter] public Guid Id { get; set; } RedistributableEditView EditView; protected override void OnInitialized() { if (Id == Guid.Empty) NavigationManager.NavigateTo("/Redistributables", true); } async Task Save() { await EditView.Save(); } }