We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd127f4 commit fa09e4aCopy full SHA for fa09e4a
docs/references/auth.rst
@@ -296,3 +296,23 @@ doing custom logic based on the web user info.
296
END IF;
297
END
298
$$ LANGUAGE plpgsql;
299
+
300
+.. raw:: html
301
302
+ <script type="text/javascript">
303
+ let hash = window.location.hash;
304
305
+ const redirects = {
306
+ '#jwt-based-user-impersonation': '#jwt-authentication',
307
+ '#client-auth': '#bearer-authentication',
308
+ '#jwt-caching': '#jwt-cache',
309
+ '#jwk-kid-validation': '#kid-verification',
310
+ '#jwt-aud-claim-validation': '#aud-validation',
311
+ };
312
313
+ let willRedirectTo = redirects[hash];
314
315
+ if (willRedirectTo) {
316
+ window.location.href = willRedirectTo;
317
+ }
318
+ </script>
0 commit comments