Updated code for call end date time updation

This commit is contained in:
nisha
2025-02-27 16:43:07 +05:30
parent 5e43346a26
commit 65a8d6e971
3 changed files with 33 additions and 7 deletions

View File

@@ -50,7 +50,7 @@ public class CallServiceImpl implements CallService {
UpdateCallRequestStep1 updateCallRequest) {
UserEntity user = validator.validateUser(request);
CallEntity call = validator.validateUserWithCall(user, callId);
return callDao.updateCallStep1(call, updateCallRequest, user);
return callDao.updateCallStep1(request,call, updateCallRequest, user);
}
@Override
@Transactional(readOnly = true)