From f44b4cc82b0d65f744e1ac98f6f98a7fd1ff8981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Tue, 15 Oct 2019 17:37:14 +0200 Subject: [PATCH] Update OpenIddictServerOptions.AuthorizationCodeLifetime's documentation to include the default lifetime --- src/OpenIddict.Server/OpenIddictServerOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenIddict.Server/OpenIddictServerOptions.cs b/src/OpenIddict.Server/OpenIddictServerOptions.cs index 05055cf7..9126eabc 100644 --- a/src/OpenIddict.Server/OpenIddictServerOptions.cs +++ b/src/OpenIddict.Server/OpenIddictServerOptions.cs @@ -105,7 +105,7 @@ namespace OpenIddict.Server }; /// - /// Gets or sets the period of time the authorization codes remain valid after being issued. + /// Gets or sets the period of time authorization codes remain valid after being issued. The default value is 5 minutes. /// While not recommended, this property can be set to null to issue codes that never expire. /// public TimeSpan? AuthorizationCodeLifetime { get; set; } = TimeSpan.FromMinutes(5);