Skip to content

Instantly share code, notes, and snippets.

@ntakouris
Created July 23, 2019 09:56
Show Gist options
  • Select an option

  • Save ntakouris/e5c4bab137bc204fdceeb86471d48f5e to your computer and use it in GitHub Desktop.

Select an option

Save ntakouris/e5c4bab137bc204fdceeb86471d48f5e to your computer and use it in GitHub Desktop.
services.AddAuthorization(options =>
{
options.AddPolicy("MustWorkForChapsas", policy =>
{
policy.AddRequirements(new WorksForCompanyRequirement("chapsas.com"));
});
});
services.AddSingleton<IAuthorizationHandler, WorksForCompanyHandler>();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment