< Summary

Information
Class: Syki.Back.Features.Cross.ViewNotifications.ViewNotificationsController
Assembly: Back
File(s): /home/runner/work/syki/syki/Back/Features/Cross/ViewNotifications/ViewNotificationsController.cs
Tag: 22_11348620282
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 18
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/ViewNotificationsController.cs

#LineLine coverage
 1namespace Syki.Back.Features.Cross.ViewNotifications;
 2
 3/// <summary>
 4/// Marca todas as Notificações do Usuário como visualizadas.
 5/// </summary>
 6[ApiController, AuthBearer]
 7[EnableRateLimiting("Medium")]
 8[Consumes("application/json"), Produces("application/json")]
 19public class ViewNotificationsController(ViewNotificationsService service) : ControllerBase
 10{
 11    [HttpPut("notifications/user")]
 12    public async Task<IActionResult> View()
 13    {
 114        await service.View(User.InstitutionId(), User.Id());
 15
 116        return Ok();
 117    }
 18}