Added API for getting notifications by compnayId and userId.

This commit is contained in:
piyushkag
2024-12-28 12:19:39 +05:30
parent 5d32e19dd4
commit 8074d5d73d
6 changed files with 48 additions and 3 deletions

View File

@@ -55,4 +55,8 @@ public class NotificationServiceImpl implements NotificationService {
return;
}
@Override
public List<NotificationResponse> getNotificationsByCompanyIdAndUserId(Long userId, Long companyId) {
return notificationDao.getNotificationByCompanyIdAndUserId(userId, companyId);
}
}