Skip to content

Commit

Permalink
Issue #LR-676 merge: Release 7.0.0 1 (#1237)
Browse files Browse the repository at this point in the history
* Issue #LR-676 feat: Delete User API

* Issue #LR-676 feat: Delete User API

* Issue #LR-676 feat: Delete User API

* Issue #LR-676 feat: Delete User API

* Issue #LR-676 feat: Delete User API

---------

Co-authored-by: Jayaprakash8887 <Jayaprakash.narayanaswamy@tarento.com>
  • Loading branch information
Jayaprakash8887 and Jayaprakash8887 authored Dec 18, 2023
1 parent 3487567 commit a90364a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import org.sunbird.service.user.UserService;
import org.sunbird.service.user.impl.UserServiceImpl;
import org.sunbird.util.PropertiesCache;
import org.sunbird.util.user.UserUtil;

public class UserDeletionBackgroundJobActor extends BaseActor {

Expand All @@ -32,7 +33,8 @@ private void inputKafkaTopic(Request request) throws Exception {
logger.info("UserDeletionBackgroundJobActor::inputKafkaTopic:: roles size:: " + roles.size());
User user = userService.getUserById(userId, request.getRequestContext());
String rootOrgId = user.getRootOrgId();
String userName = user.getUserName();

String userName = UserUtil.getDecryptedData(user.getUserName(), request.getRequestContext());

List<Map<String, Object>> suggestedUsersList = new ArrayList<>();
Map<String, Object> searchQueryMap = new HashMap<>();
Expand Down

0 comments on commit a90364a

Please sign in to comment.