Skip to content

Commit

Permalink
Update authorization.md
Browse files Browse the repository at this point in the history
missed parentheses
  • Loading branch information
AhmedTurky75 authored Nov 13, 2023
1 parent 61661f1 commit cac4aca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public void ConfigureServices(IServiceCollection services)
services.AddAuthorization(options =>
{
options.AddPolicy("read_access", policy =>
policy.RequireClaim("scope", "read");
policy.RequireClaim("scope", "read"));
});
}
```
Expand Down

0 comments on commit cac4aca

Please sign in to comment.