Resolved conflicts

This commit is contained in:
nisha
2024-11-20 19:11:51 +05:30
9 changed files with 31 additions and 9 deletions

View File

@@ -62,9 +62,9 @@ public class CallServiceImpl implements CallService {
@Override
@Transactional(readOnly = true)
public List<CallDetailsResponseBean> getAllCalls(HttpServletRequest request,Long companyId) {
public List<CallDetailsResponseBean> getAllCalls(HttpServletRequest request,Long companyId,Boolean onlyPreferredCall) {
UserEntity user = validator.validateUser(request);
return callDao.getAllCalls(request,user,companyId);
return callDao.getAllCalls(request,user,companyId,onlyPreferredCall);
}