Files
deepdrft/DeepDrftManager/Components/Pages/Tracks/TrackNew.razor
T

13 lines
471 B
Plaintext

@page "/tracks/new"
@attribute [Authorize]
@inject NavigationManager Navigation
@* §8.M: the legacy single-track add form is retired. Its add responsibility is absorbed by
BatchUpload's single-track branch. This route is kept only as a redirect so any bookmarked
/tracks/new lands on the live upload surface; there are no in-app callers. *@
@code {
protected override void OnInitialized() =>
Navigation.NavigateTo("/tracks/upload", replace: true);
}