Skip to content

Commit

Permalink
Implement group creation flow when group ID is not enabled in usersto…
Browse files Browse the repository at this point in the history
…re - fix a minor issue
  • Loading branch information
LakshiAthapaththu committed Aug 15, 2023
1 parent 9d12e03 commit 6e1c10f
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2632,9 +2632,6 @@ public Group createGroup(Group group, Map<String, Boolean> requiredAttributes)
// SCIMGroupHandler scimGroupHandler = new SCIMGroupHandler(carbonUM.getTenantId());
// scimGroupHandler.createSCIMAttributes(group);
// carbonUM.addRoleWithID(group.getDisplayName(), members.toArray(new String[0]), null, false);
// public org.wso2.carbon.user.core.common.Group addGroupWithID(String groupName, String[] userIDList, String displayName, String groupID, Date createdDate,
// Date lastModifiedDate, String location, int tenantId) throws
// org.wso2.carbon.user.core.UserStoreException {
coreGroup = carbonUM.addGroupWithID(group.getDisplayName(), members.toArray(new String[0]), group.getDisplayName(),
group.getId(), group.getCreatedDate(), group.getLastModified(), group.getLocation());
if (log.isDebugEnabled()) {
Expand Down

0 comments on commit 6e1c10f

Please sign in to comment.