@if (accessPolicyState$ | async; as accessPolicyState) {
@if (isInitialLoading(accessPolicyState)) {
} @else {
@if (flowConfiguration$ | async; as flowConfiguration) {
@switch (accessPolicyState.policyStatus) {
@case (PolicyStatus.NotFound) {
No policy for the specified resource.
@if (flowConfiguration.supportsConfigurableAuthorizer) {
Create a new policy.
}
}
@case (PolicyStatus.Inherited) {
@if (accessPolicyState.accessPolicy) {
}
}
@case (PolicyStatus.Forbidden) {
Not authorized to access the policy for the specified resource.
}
}
}
}
}
Showing effective policy inherited from all policies.
@if (supportsConfigurableAuthorizer) {
Override this policy.
}
Showing effective policy inherited from the controller.
@if (supportsConfigurableAuthorizer) {
Override this policy.
}
No restriction specific users.
@if (supportsConfigurableAuthorizer) {
Create a new policy.
}