Skip to content

Commit 18584fb

Browse files
committed
Move comment to a separate line
1 parent e10377f commit 18584fb

File tree

1 file changed

+2
-1
lines changed
  • src/content/docs/introspection-auth-handler

1 file changed

+2
-1
lines changed

src/content/docs/introspection-auth-handler/index.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ using Duende.AspNetCore.Authentication.OAuth2Introspection;
5656
builder.Services.AddAuthentication(OAuth2IntrospectionDefaults.AuthenticationScheme)
5757
.AddOAuth2Introspection(options =>
5858
{
59-
options.Authority = "https://demo.duendesoftware.com"; // Replace with your authorization server's URL
59+
// Replace with your authorization server's URL
60+
options.Authority = "https://demo.duendesoftware.com";
6061

6162
options.ClientId = "client_id_for_introspection_endpoint";
6263
options.ClientSecret = "client_secret_for_introspection_endpoint";

0 commit comments

Comments
 (0)