Skip to content

Commit 6d7265c

Browse files
committed
update readme
1 parent a0c5f65 commit 6d7265c

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,13 @@ You can try to create a token from the received jwt.
4444
try {
4545
final SSOFacade ssoFac = SSOFacade.create(rsaPublicKey);
4646
final SSOData ssoData = ssoFac.verify(jwToken);
47-
47+
48+
// If the plugin instance was deleted in Staffbase
49+
if(ssoData.isDeleteInstanceCall()){
50+
this.handleSsoDeletionCall();
51+
return;
52+
}
53+
4854
request.setAttribute("instanceID", ssoData.getInstanceID());
4955

5056
return this.forward("/index.jsp");

0 commit comments

Comments
 (0)