Added field pec in csv

This commit is contained in:
rajesh
2025-07-03 15:01:31 +05:30
parent e4cd66247e
commit cbd06770fd
2 changed files with 10 additions and 4 deletions

View File

@@ -180,6 +180,6 @@ public class ApplicationServiceImpl implements ApplicationService {
@Override
public byte[] downloadRankingCsv(HttpServletRequest request, Long callId) {
UserEntity userEntity = validator.validateUser(request);
return applicationDao.downloadRankingCsv(callId);
return applicationDao.downloadRankingCsv(callId,userEntity);
}
}