Hey everyone,
Business is asking to make sure people have to go through the auth flow every n hours. My login config looks like this…
{
domain: "...",
client_id: "...",
redirect_uri: window.location.origin,
scope: "...",
useRefreshTokens: true,
}
How do I ensure the user is required to at least go through the login flow after being idle (after token issued?) for n hours?