From cac4aca9ca8130973e79571f935416c97a86ecb2 Mon Sep 17 00:00:00 2001 From: Ahmed Turky <120424557+AhmedTurky75@users.noreply.github.com> Date: Mon, 13 Nov 2023 21:35:00 +0200 Subject: [PATCH] Update authorization.md missed parentheses --- IdentityServer/v5/docs/content/apis/aspnetcore/authorization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IdentityServer/v5/docs/content/apis/aspnetcore/authorization.md b/IdentityServer/v5/docs/content/apis/aspnetcore/authorization.md index 592eb1ad..a3d409b8 100644 --- a/IdentityServer/v5/docs/content/apis/aspnetcore/authorization.md +++ b/IdentityServer/v5/docs/content/apis/aspnetcore/authorization.md @@ -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")); }); } ```