Firebase_Implementation #135

Merged
ashutosh.nehete merged 62 commits from Firebase_Implementation into main 2025-09-20 12:11:54 +00:00
Showing only changes of commit ba5698f4b2 - Show all commits

View File

@ -82,7 +82,7 @@ namespace Marco.Pms.Services.Service
var employeeIds = await _context.EmployeeRoleMappings
.Where(er => (projectAssignedEmployeeIds.Contains(er.EmployeeId) || manageProjectsRoleIds.Contains(er.RoleId)) && teamAttendanceRoleIds.Contains(er.RoleId))
.Select(er => er.RoleId)
.Select(er => er.EmployeeId)
.ToListAsync();
Notification notificationFirebase;