...

/

Solution Review: Adding Public and Admin Views

Solution Review: Adding Public and Admin Views

Review the solution of the "Adding Public and Admin Views" challenge.

We'll cover the following...

Overview

The complete solution is available in the following playground:

{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft.AspNetCore": "Warning"
    }
  },
  "AllowedHosts": "*"
}
The complete solution with the authorization requirements appropriately applied

Solving the challenge

First, we need to find out what client configuration settings we need to apply in our MVC app to make it compatible with the IdP server. To do so, we can visit the ...