Introspection access point properly uses basic auth of client id and secret to access
15 lines
307 B
Plaintext
15 lines
307 B
Plaintext
@page "/CreateServer"
|
|
@using Microsoft.AspNetCore.Http
|
|
@using Microsoft.AspNetCore.Authentication
|
|
@inject IHttpContextAccessor _httpContextAccessor
|
|
@attribute [Authorize]
|
|
|
|
<ServerCreationForm/>
|
|
|
|
@code {
|
|
protected override async Task OnInitializedAsync()
|
|
{
|
|
base.OnInitializedAsync();
|
|
}
|
|
|
|
} |