File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
components/org.wso2.carbon.identity.oauth/src/main/java/org/wso2/carbon/identity/oauth/listener Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,8 @@ public void handleEvent(Event event) throws IdentityEventException {
107
107
throw new IdentityEventException (errorMsg );
108
108
}
109
109
110
- } else if (IdentityEventConstants .Event .POST_UPDATE_USER_LIST_OF_ROLE_EVENT .equals (event .getEventName ())) {
110
+ } else if (IdentityEventConstants .Event .POST_UPDATE_USER_LIST_OF_ROLE_EVENT .equals (event .getEventName ()) ||
111
+ IdentityEventConstants .Event .POST_UPDATE_USER_LIST_OF_ROLE_V2_EVENT .equals (event .getEventName ())) {
111
112
112
113
Object userIdList = event .getEventProperties ()
113
114
.get (IdentityEventConstants .EventProperty .DELETE_USER_ID_LIST );
@@ -119,7 +120,9 @@ public void handleEvent(Event event) throws IdentityEventException {
119
120
}
120
121
121
122
} else if (IdentityEventConstants .Event .PRE_DELETE_ROLE_EVENT .equals (event .getEventName ()) ||
122
- IdentityEventConstants .Event .POST_SET_PERMISSIONS_FOR_ROLE_EVENT .equals (event .getEventName ())) {
123
+ IdentityEventConstants .Event .PRE_DELETE_ROLE_V2_EVENT .equals (event .getEventName ()) ||
124
+ IdentityEventConstants .Event .POST_SET_PERMISSIONS_FOR_ROLE_EVENT .equals (event .getEventName ()) ||
125
+ IdentityEventConstants .Event .POST_UPDATE_PERMISSIONS_FOR_ROLE_V2_EVENT .equals (event .getEventName ())) {
123
126
124
127
String roleId = (String ) event .getEventProperties ()
125
128
.get (IdentityEventConstants .EventProperty .ROLE_ID );
Original file line number Diff line number Diff line change 863
863
<carbon .kernel.registry.imp.pkg.version.range>[1.0.1, 2.0.0)</carbon .kernel.registry.imp.pkg.version.range>
864
864
865
865
<!-- Carbon Identity Framework version -->
866
- <carbon .identity.framework.version>5.25.427 </carbon .identity.framework.version>
866
+ <carbon .identity.framework.version>5.25.436 </carbon .identity.framework.version>
867
867
<carbon .identity.framework.imp.pkg.version.range>[5.25.234, 7.0.0)
868
868
</carbon .identity.framework.imp.pkg.version.range>
869
869
You can’t perform that action at this time.
0 commit comments