Skip to content

Commit

Permalink
Improve organization user sharing
Browse files Browse the repository at this point in the history
  • Loading branch information
ShanChathusanda93 committed Sep 25, 2023
1 parent be708a7 commit 125467b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ public List<SharedUserAssociation> getAllAssociationsOfOrgUserToSharedOrgs(Strin
getUserSharedOrgsPrepStat.setString(2, organizationId);
List<SharedUserAssociation> sharedUserAssociationList = new ArrayList<>();
try (ResultSet resultSet = getUserSharedOrgsPrepStat.executeQuery()) {
if (resultSet.next()) {
while (resultSet.next()) {
SharedUserAssociation sharedUserAssociation = new SharedUserAssociation();
sharedUserAssociation.setSharedUserId(resultSet.getString(COLUMN_NAME_SHARED_USER_ID));
sharedUserAssociation.setSharedOrganizationId(resultSet.getString(COLUMN_NAME_SUB_ORG_ID));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,4 @@ public boolean doPreSetUserClaimValueWithID(String userID, String claimURI, Stri
}
return true;
}

@Override
public boolean isEnable() {

return false;
}
}

0 comments on commit 125467b

Please sign in to comment.