12 lines
280 B
Plaintext
12 lines
280 B
Plaintext
@page "/"
|
|
@rendermode InteractiveServer
|
|
@attribute [HierarchicalRoleAuthorize([SystemRoleConstants.Admin])]
|
|
@inject NavigationManager NavigationManager
|
|
|
|
@code {
|
|
protected override void OnInitialized()
|
|
{
|
|
NavigationManager.NavigateTo("/cms", replace: true);
|
|
}
|
|
}
|