There was an error while loading. Please reload this page.
1 parent 88058f7 commit a09c18fCopy full SHA for a09c18f
src/JWTSimpleServer/JwtSimpleServerOptions.cs
@@ -11,9 +11,6 @@ public class JwtSimpleServerOptions
11
public string Issuer { get; set; } = Constants.DefaultIssuer;
12
public string IssuerSigningKey { get; set; }
13
public Func<DateTime> NotBefore = () => DateTime.UtcNow;
14
- public Func<DateTime> Expires = () => DateTime.UtcNow.AddMinutes(15);
15
- public void UseRefreshToken() => _UseRefreshToken = true;
16
-
17
- private bool _UseRefreshToken = false;
+ public Func<DateTime> Expires = () => DateTime.UtcNow.AddMinutes(15);
18
}
19
0 commit comments