< Summary

Information
Class: Syki.Back.Features.Cross.ViewNotifications.ViewNotificationsService
Assembly: Back
File(s): /home/runner/work/syki/syki/Back/Features/Cross/ViewNotifications/ViewNotificationsService.cs
Tag: 22_11348620282
Line coverage
100%
Covered lines: 8
Uncovered lines: 0
Coverable lines: 8
Total lines: 16
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
View()100%11100%

File(s)

/home/runner/work/syki/syki/Back/Features/Cross/ViewNotifications/ViewNotificationsService.cs

#LineLine coverage
 1namespace Syki.Back.Features.Cross.ViewNotifications;
 2
 13public class ViewNotificationsService(SykiDbContext ctx) : ICrossService
 4{
 5    public async Task View(Guid institutionId, Guid userId)
 6    {
 17        var notifications = await ctx.UserNotifications
 18            .Include(x => x.Notification)
 19            .Where(c => c.Notification.InstitutionId == institutionId && c.UserId == userId)
 110            .ToListAsync();
 11
 212        notifications.ForEach(x => x.ViewedAt = DateTime.Now);
 13
 114        await ctx.SaveChangesAsync();
 115    }
 16}