Created
July 23, 2019 09:56
-
-
Save ntakouris/e5c4bab137bc204fdceeb86471d48f5e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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