From 9cbe83e45ea6af876b165c42295589ab2b23351a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Mon, 30 Jan 2017 13:59:42 +0100 Subject: [PATCH] Realign the default access token lifetime with the default ASOS value --- src/OpenIddict/OpenIddictOptions.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/OpenIddict/OpenIddictOptions.cs b/src/OpenIddict/OpenIddictOptions.cs index 13af4295..1fb050db 100644 --- a/src/OpenIddict/OpenIddictOptions.cs +++ b/src/OpenIddict/OpenIddictOptions.cs @@ -16,10 +16,6 @@ namespace OpenIddict { public class OpenIddictOptions : OpenIdConnectServerOptions { public OpenIddictOptions() { Provider = null; - - // Use the same lifespan as the default security stamp - // verification interval used by ASP.NET Core Identity. - AccessTokenLifetime = TimeSpan.FromMinutes(30); } ///