Skip to content

Instantly share code, notes, and snippets.

@scottsauber
Created January 17, 2020 20:10
Embed
What would you like to do?
public class Startup
{
// Other Startup code omitted
public void ConfigureServices(IServiceCollection services)
{
services.AddAuthorization(options =>
{
options.FallbackPolicy = new AuthorizationPolicyBuilder()
.RequireAuthenticatedUser()
.Build();
// Register other policies here
});
// Other service registrations omitted
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment