< Summary

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

File(s)

/home/runner/work/syki/syki/Back/Features/Academic/CreateNotification/CreateNotificationController.cs

#LineLine coverage
 1namespace Syki.Back.Features.Academic.CreateNotification;
 2
 3/// <summary>
 4/// Cria uma nova Notificação.
 5/// </summary>
 6[ApiController, AuthAcademic]
 7[EnableRateLimiting("Medium")]
 8[Consumes("application/json"), Produces("application/json")]
 129public class CreateNotificationController(CreateNotificationService service) : ControllerBase
 10{
 11    [HttpPost("academic/notifications")]
 12    [ProducesResponseType(200)]
 13    public async Task<IActionResult> Create([FromBody] CreateNotificationIn data)
 14    {
 1215        var notification = await service.Create(User.InstitutionId(), data);
 16
 1217        return Ok(notification);
 1218    }
 19}