diff --git a/website/src/docs/hotchocolate/v15/security/authentication.md b/website/src/docs/hotchocolate/v15/security/authentication.md index a922db13080..271abaae534 100644 --- a/website/src/docs/hotchocolate/v15/security/authentication.md +++ b/website/src/docs/hotchocolate/v15/security/authentication.md @@ -71,7 +71,7 @@ builder.Services .AddQueryType(); ``` -All of this does not yet lock out unauthenticated users. It only exposes the identity of the authenticated user to our application through a `ClaimsPrincipal`. If we want to prevent certain users from querying our graph, we need to utilize authorization. +Adding authorization does not lock out unauthenticated users. It only exposes the identity of the authenticated user to our application through a `ClaimsPrincipal`. If we want to prevent certain users from querying our graph, we need to utilize authorization. [Learn more about authorization](/docs/hotchocolate/v15/security/authorization)