Resolved conflicts

This commit is contained in:
rajesh
2024-11-18 13:09:36 +05:30
23 changed files with 364 additions and 250 deletions

View File

@@ -57,7 +57,7 @@ public class CallServiceImpl implements CallService {
public CallResponse getCallById(HttpServletRequest request, Long callId) {
UserEntity user = validator.validateUser(request);
CallEntity call = validator.validateUserWithCall(user, callId);
return callDao.getCallById(call);
return callDao.getCallById(user,call);
}
@Override