AI Features

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 ...

Ask