rcnn/web/public/auth/silent-callback.html
Marius Unsel d93412cd0d Initial commit
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 01:12:40 +02:00

15 lines
445 B
HTML

<!doctype html>
<html>
<head><title>Silent renew</title></head>
<body>
<script>
// oidc-client-ts exposes a global when loaded as a classic script.
// We dynamically import it from the bundled app's chunk path.
// The simplest approach: post a message back to the opener.
if (window.opener) {
window.opener.postMessage(window.location.href, window.location.origin)
}
</script>
</body>
</html>