Commit 2dd01f84 authored by shishir suman's avatar shishir suman
Browse files

comment as it is failing due to constraints

Showing with 1 addition and 1 deletion
+1 -1
......@@ -179,7 +179,7 @@ public class IntegrationServiceImpl implements IntegrationService {
User newUser = createUserWithApiResponse(userContentData);
User savedUser = userRepository.save(newUser);
// create user role mapping
createUserRoleMapping(user, savedUser);
//createUserRoleMapping(user, savedUser);
// create user department mapping
if(savedUser != null && savedUser.getId() > 0 && departmentList != null && !departmentList.isEmpty()) {
org.upsmf.grievance.model.Department departmentMap = org.upsmf.grievance.model.Department.builder().departmentName(departmentList.get(0).getCode()).userId(savedUser.getId()).build();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment