Important Update Effective February 1, 2024!
Due to recent changes in Jira and Confluence, we've made the tough decision to discontinue the OpenID Connect (OIDC)/OAuth app and no longer provide new versions for the newest Jira/Confluence releases as of January 31, 2024.
This is due to some necessary components no longer shipping with Jira/Confluence, which would require some extensive rewrites of the OIDC App.
Important Update! This app will be discontinued soon!
Due to recent changes in Jira, which no longer ships with some components required for our Read Receipts app to run, we've made the tough decision to discontinue the app, as of Februar 5, 2025.
Important Update! This app will be discontinued soon!
We've made the tough business decision to discontinue the app, as of January 11, 2025.
Redirect SSO users to another URL than non-SSO-users after logging out
From SAML version 6.12. it is possible to redirect SSO users to another URL than non-SSO users after logging out.
When the Logout Redirection is set to Redirect all users after logout
,
Users see the Logged Out page after logging out:
This Page can be customized by editing the Logged Out Page Template under Page Templates in the app's configuration page.
Redirect SSO users to another page then non-SSO-users
This example redirects SSO-users to https://www.bing.com, non-SSO-users to https://www.google.com. It uses the $wasSso
Velocity-variable wich is true if the user was logged in with SSO.
<html>
<head>
<title>You are logged out now</title>
$webResourceManager.requireResource("$pluginproperties.pluginkey:resources")
<meta name="decorator" content="atl.general">
</head>
<body class="aui-layout aui-theme-default page-type-message" >
<section id="content" role="main">
<div class="aui-page-panel"><div class="aui-page-panel-inner">
<section class="aui-page-panel-content">
<div class="form-body">
<div class="aui-message info"><span class="aui-icon icon-info"></span><p class="title">
#if($wasSso)
<p>This was a SSO Session</p>
<script>window.location.href = 'https://www.bing.com'</script>
#else
<p>This was no SSO Session</p>
<script>window.location.href = 'https://www.google.com'</script>
#end
</div>
</div>
</section>
</div>
</div>
</section>
</body>
</html>