Skip to content

Commit

Permalink
Fix for adminMigrate API (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
sreeragksgh authored Dec 20, 2022
1 parent 1ee60c5 commit 557c931
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ public SBApiResponse migrateUser(Map<String, Object> request, String userToken,
return response;
}

boolean assignValue = userUtilityService.assignRole((String) userData.get(Constants.ROOT_ORG_ID_LOWER), userId,
boolean assignValue = userUtilityService.assignRole((String) userData.get(Constants.ROOT_ORG_ID), userId,
StringUtils.EMPTY);

if (assignValue) {
Expand Down

0 comments on commit 557c931

Please sign in to comment.