We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0c5f65 commit 6d7265cCopy full SHA for 6d7265c
1 file changed
README.md
@@ -44,7 +44,13 @@ You can try to create a token from the received jwt.
44
try {
45
final SSOFacade ssoFac = SSOFacade.create(rsaPublicKey);
46
final SSOData ssoData = ssoFac.verify(jwToken);
47
-
+
48
+ // If the plugin instance was deleted in Staffbase
49
+ if(ssoData.isDeleteInstanceCall()){
50
+ this.handleSsoDeletionCall();
51
+ return;
52
+ }
53
54
request.setAttribute("instanceID", ssoData.getInstanceID());
55
56
return this.forward("/index.jsp");
0 commit comments