update auth for refresh tokens and token invalidation
This commit is contained in:
@@ -4,5 +4,6 @@ public class JwtOptions
|
||||
public string Secret { get; set; } = null!;
|
||||
public string Issuer { get; set; } = null!;
|
||||
public string Audience { get; set; } = null!;
|
||||
public int ExpiryMinutes { get; set; } = 480;
|
||||
public int ExpiryMinutes { get; set; } = 15;
|
||||
public int RefreshTokenExpiryDays { get; set; } = 7;
|
||||
}
|
||||
Reference in New Issue
Block a user